From 7a2bade211d2e8951dda2b88754a564670847b35 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 22 Aug 2011 11:44:07 -0400 Subject: [PATCH] - Added 'priority' column on messages list --- program/js/app.js | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index bbb14e7..9da19b2 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1778,6 +1778,12 @@ 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+'"> </span>'; + else + html = ' '; + } else html = cols[c]; -- Gitblit v1.9.1