diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-04-11 11:50:02 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-04-11 11:50:02 +0000 |
| commit | e1b1d47b0faa2fbb36dd48f65be796b2422b52c8 (patch) | |
| tree | 1442870404e7c000c99e29ed094c817962faf475 /roundcubemail/program/js | |
| parent | 7f7a4bb1e875698c4899facadd01e8eb07cb21c8 (diff) | |
- Fix setting 'unfocused' class on folder selection
git-svn-id: https://svn.roundcube.net/trunk@4642 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 4ac7b0a44..bfce7c7ed 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -4825,7 +4825,7 @@ function rcube_webmail() var current_li, target_li; if ((current_li = this.get_folder_li(old, prefix))) { - $(current_li).removeClass('selected').removeClass('unfocused'); + $(current_li).removeClass('selected').addClass('unfocused'); } if ((target_li = this.get_folder_li(name, prefix))) { $(target_li).removeClass('unfocused').addClass('selected'); |
