summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/app.js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-08-22 15:44:07 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-08-22 15:44:07 +0000
commit4b8975b1dcaf58b833ffe46fcfbb71148b45f810 (patch)
treebd413666fdb02a099ea97e4e842d81366d941e90 /roundcubemail/program/js/app.js
parentf0f20726e1ea62a9be7f1f73a89c636b7286e5ef (diff)
- Added 'priority' column on messages list
git-svn-id: https://svn.roundcube.net/trunk@5111 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
-rw-r--r--roundcubemail/program/js/app.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index bbb14e7ad..9da19b2bb 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -1778,6 +1778,12 @@ function rcube_webmail()
html = expando;
else if (c == 'subject')
html = tree + cols[c];
+ else if (c == 'priority') {
+ if (flags.prio > 0 && flags.prio < 6)
+ html = '<span class="prio'+flags.prio+'">&nbsp;</span>';
+ else
+ html = '&nbsp;';
+ }
else
html = cols[c];