summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-04-26 18:10:26 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-04-26 18:10:26 +0000
commit035963f8829cdafc951245f04f46f96168c48381 (patch)
tree5218cc87ffb9ad5781a366fd8c79d9b5b5ea1905
parent198111882c9ba94a32a26adab5145fe71f31b0ac (diff)
- Add IE8 hack for messages list issue (#1487821)
git-svn-id: https://svn.roundcube.net/trunk@6129 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/js/app.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index fa4220f51..12c542615 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/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') {