From d960a01bb472dc6ce022681bc0ab636a102a1e18 Mon Sep 17 00:00:00 2001 From: alecpl Date: Thu, 26 Apr 2012 18:10:26 +0000 Subject: - Add IE8 hack for messages list issue (#1487821) --- program/js/app.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/program/js/app.js b/program/js/app.js index fa4220f51..12c542615 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1853,8 +1853,11 @@ function rcube_webmail() else if (c == 'threads') html = expando; else if (c == 'subject') { - if (bw.ie) + if (bw.ie) { col.onmouseover = function() { rcube_webmail.long_subject_title_ie(this, message.depth+1); }; + if (bw.ie8) + tree = '' + tree; // #1487821 + } html = tree + cols[c]; } else if (c == 'priority') { -- cgit v1.2.3