From: Marcel Werk Date: Mon, 22 Aug 2016 15:06:53 +0000 (+0200) Subject: Increased icon size in code box X-Git-Tag: 3.0.0_Beta_1~576^2~12 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d542ba7a45132ce3cd616bdb8c4454dc24ff3b69;p=GitHub%2FWoltLab%2FWCF.git Increased icon size in code box --- diff --git a/wcfsetup/install/files/js/WCF.Message.js b/wcfsetup/install/files/js/WCF.Message.js index 6ff9de6a17..047493495d 100644 --- a/wcfsetup/install/files/js/WCF.Message.js +++ b/wcfsetup/install/files/js/WCF.Message.js @@ -43,7 +43,7 @@ WCF.Message.BBCode.CodeViewer = Class.extend({ $('.codeBox:not(.jsCodeViewer)').each($.proxy(function(index, codeBox) { var $codeBox = $(codeBox).addClass('jsCodeViewer'); - $('').appendTo($codeBox.find('.codeBoxHeader')).click($.proxy(this._click, this)); + $('').appendTo($codeBox.find('.codeBoxHeader')).click($.proxy(this._click, this)); }, this)); },