summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-04-23 09:10:53 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-04-23 09:10:53 +0000
commita5f42d416edd1eefe23e9738d4a8a0cafa834100 (patch)
tree0c5ad6375c1e53db1f5416266b8ac983d77fec35 /roundcubemail/program
parente10c466c422e98c901a3a6a40caff0aff018ab24 (diff)
- fix Unread selection after jquery integration
git-svn-id: https://svn.roundcube.net/trunk@2416 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/js/list.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/roundcubemail/program/js/list.js b/roundcubemail/program/js/list.js
index 5f017df03..706daab58 100644
--- a/roundcubemail/program/js/list.js
+++ b/roundcubemail/program/js/list.js
@@ -515,8 +515,7 @@ select_all: function(filter)
}
else if (this.rows[n])
{
- this.set_classname(this.rows[n].obj, 'selected', false);
- this.set_classname(this.rows[n].obj, 'unfocused', false);
+ $(this.rows[n].obj).removeClass('selected').removeClass('unfocused');
}
}