From: Alexander Ebert Date: Mon, 16 Jan 2012 15:21:38 +0000 (+0100) Subject: Removed static icon reference X-Git-Tag: 2.0.0_Beta_1~1425^2~7 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=cd62b32c1585e5400a3afb80f9fd1ed0af12a38b;p=GitHub%2FWoltLab%2FWCF.git Removed static icon reference Fixes #347 Fixes #348 --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 8ba61a2b6f..7be237809f 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -1030,7 +1030,7 @@ WCF.Action.Proxy.prototype = { _showLoadingOverlay: function() { // create loading overlay on first run if (this._loadingOverlay === null) { - this._loadingOverlay = $('
' + WCF.Language.get('wcf.global.loading') + '
').hide().appendTo($('body')); + this._loadingOverlay = $('
' + WCF.Language.get('wcf.global.loading') + '
').hide().appendTo($('body')); } // fade in overlay @@ -3309,7 +3309,7 @@ WCF.Search.User = WCF.Search.Base.extend({ var $listItem = this._super(item); // insert item type - $('').insertBefore($listItem.children('span:eq(0)')); + $('').insertBefore($listItem.children('span:eq(0)')); $listItem.data('type', item.type); return $listItem;