summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/app.js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-10-06 09:32:09 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-10-06 09:32:09 +0000
commitd0c486a6801249f2d35fa30f70cf749eafbd302b (patch)
tree1cc2c60226dd93ba3164672838733ad851041bde /roundcubemail/program/js/app.js
parentc06d4194f673da0fd62d97c9d0733b3278b29b51 (diff)
- #1485463: fixed css classes setting in messages list
git-svn-id: https://svn.roundcube.net/trunk@1942 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
-rw-r--r--roundcubemail/program/js/app.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 59d23f101..bf6e8bc25 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -3406,7 +3406,11 @@ function rcube_webmail()
var row = document.createElement('TR');
row.id = 'rcmrow'+uid;
- row.className = 'message '+(even ? 'even' : 'odd')+(flags.unread ? ' unread' : '')+(flags.deleted ? ' deleted' : '');
+ row.className = 'message'
+ + (even ? ' even' : ' odd')
+ + (flags.unread ? ' unread' : '')
+ + (flags.deleted ? ' deleted' : '')
+ + (flags.flagged ? ' flagged' : '');
if (this.message_list.in_selection(uid))
row.className += ' selected';