Removed static icon reference
authorAlexander Ebert <ebert@woltlab.com>
Mon, 16 Jan 2012 15:21:38 +0000 (16:21 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Mon, 16 Jan 2012 15:21:38 +0000 (16:21 +0100)
Fixes #347
Fixes #348

wcfsetup/install/files/js/WCF.js

index 8ba61a2b6f1f520ed443179413326a6dff6cc9c2..7be237809ffc14fc9ade4f3bd558c8d03434ab8f 100644 (file)
@@ -1030,7 +1030,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="' + RELATIVE_WCF_DIR + 'icon/spinner1.svg" 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.spinner') + '" alt="" />' + WCF.Language.get('wcf.global.loading') + '</div>').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
-               $('<img src="' + RELATIVE_WCF_DIR + 'icon/user' + (item.type == 'group' ? 's' : '') + '1.svg" alt="" />').insertBefore($listItem.children('span:eq(0)'));
+               $('<img src="' + WCF.Icon.get('wcf.user.user' + (item.type == 'group' ? 's' : '')) + '" alt="" />').insertBefore($listItem.children('span:eq(0)'));
                $listItem.data('type', item.type);
                
                return $listItem;