From 856e2054b181d25c125a7ce401f38906beef7da2 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Fri, 27 Jan 2012 15:16:01 +0100 Subject: [PATCH] Fixed spinner icon Fixes #388 --- wcfsetup/install/files/js/WCF.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index b7d76bd60f..b360049b8a 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -1026,7 +1026,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 @@ -1141,7 +1141,7 @@ WCF.Action.Proxy.prototype = { element.attr('height', element.attr('height')); // replace image - element.attr('src', WCF.Icon.get('wcf.global.spinner')); + element.attr('src', WCF.Icon.get('wcf.global.loading')); } }; -- 2.20.1