From: Marcel Werk Date: Sat, 2 Feb 2013 00:15:00 +0000 (+0100) Subject: Fixed icon names: plus/minus => chevron-right/down X-Git-Tag: 2.0.0_Beta_1~519 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=143c5f6da07436707bf4735cbacae7749873dc60;p=GitHub%2FWoltLab%2FWCF.git Fixed icon names: plus/minus => chevron-right/down Fixes #1123 --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index e3aa812714..99a1f5322e 100755 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -3714,7 +3714,7 @@ WCF.Collapsible.SimpleRemote = WCF.Collapsible.Remote.extend({ // hide container on init if applicable if (!this._containerData[containerID].isOpen) { this._containerData[containerID].target.hide(); - this._exchangeIcon(this._containerData[containerID].button, 'plus'); + this._exchangeIcon(this._containerData[containerID].button, 'chevron-right'); } }, @@ -3744,7 +3744,7 @@ WCF.Collapsible.SimpleRemote = WCF.Collapsible.Remote.extend({ this._proxy.sendRequest(); // exchange icon - this._exchangeIcon(this._containerData[$containerID].button, ($newState === 'open' ? 'minus' : 'plus')); + this._exchangeIcon(this._containerData[$containerID].button, ($newState === 'open' ? 'chevron-down' : 'chevron-right')); // toggle container if ($newState === 'open') {