summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2012-04-26 18:10:26 +0000
committeralecpl <alec@alec.pl>2012-04-26 18:10:26 +0000
commitd960a01bb472dc6ce022681bc0ab636a102a1e18 (patch)
treecea2c69d436d7e20372f9e81c4488d749b05cd78 /program/js/app.js
parentd2191c619f261c4149b0a8949d35167b9269f00b (diff)
- Add IE8 hack for messages list issue (#1487821)
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js5
1 files changed, 4 insertions, 1 deletions
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 = '<span></span>' + tree; // #1487821
+ }
html = tree + cols[c];
}
else if (c == 'priority') {