summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-07-12 10:00:55 +0200
committerThomas Bruederli <thomas@roundcube.net>2013-07-12 10:00:55 +0200
commitf6777712dc8c8ed2316e2926e98bb081e3785e40 (patch)
treef7654d1bc804f64259097dbbee4300322bfdfde2 /program
parent77effa68365a52050854d5df427a5a80bde1030e (diff)
Enable fixed list header in IE7, too. Seems to work after some testing
Diffstat (limited to 'program')
-rw-r--r--program/js/list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js
index f4bc42566..08e4444e1 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -157,7 +157,7 @@ init_header: function()
$(this.list.tHead).replaceWith($(this.fixed_header).find('thead').clone());
$(this.list.tHead).find('tr td').attr('style', ''); // remove fixed widths
}
- else if (!bw.ie7 && this.list.className.indexOf('fixedheader') >= 0) {
+ else if (this.list.className.indexOf('fixedheader') >= 0) {
this.init_fixed_header();
}