Fixed spinner icon
authorAlexander Ebert <ebert@woltlab.com>
Fri, 27 Jan 2012 14:16:01 +0000 (15:16 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 27 Jan 2012 14:16:01 +0000 (15:16 +0100)
Fixes #388

wcfsetup/install/files/js/WCF.js

index b7d76bd60f7c78a53fa7caf22049ea04b56f27f3..b360049b8ac4a80aa7c27ed942f5808e4daa304f 100644 (file)
@@ -1026,7 +1026,7 @@ WCF.Action.Proxy.prototype = {
        _showLoadingOverlay: function() {
                // create loading overlay on first run
                if (this._loadingOverlay === null) {
-                       this._loadingOverlay = $('<div id="actionProxyLoading" class="actionProxyLoading"><img src="' + WCF.Icon.get('wcf.global.spinner') + '" alt="" />' + WCF.Language.get('wcf.global.loading') + '</div>').hide().appendTo($('body'));
+                       this._loadingOverlay = $('<div id="actionProxyLoading" class="actionProxyLoading"><img src="' + WCF.Icon.get('wcf.global.loading') + '" alt="" />' + WCF.Language.get('wcf.global.loading') + '</div>').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'));
        }
 };