Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1514 from darkwing/folder-arrows-917263
Browse files Browse the repository at this point in the history
fix bug 917263 - Change up arrow to right arrow in togglers
  • Loading branch information
lmorchard committed Oct 16, 2013
2 parents 9275ee6 + 74781b6 commit 7dba711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media/redesign/js/components.js
Expand Up @@ -248,7 +248,7 @@
}

function setIcon($tog, $li) {
$tog.find('i').attr('class', 'icon-caret-' + (getState($li) ? 'up' : 'down'));
$tog.find('i').attr('class', 'icon-caret-' + (getState($li) ? 'right' : 'down'));
}

function getState($li) {
Expand Down

0 comments on commit 7dba711

Please sign in to comment.