diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-07-12 10:00:55 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-07-12 10:00:55 +0200 |
commit | f6777712dc8c8ed2316e2926e98bb081e3785e40 (patch) | |
tree | f7654d1bc804f64259097dbbee4300322bfdfde2 /program | |
parent | 77effa68365a52050854d5df427a5a80bde1030e (diff) |
Enable fixed list header in IE7, too. Seems to work after some testing
Diffstat (limited to 'program')
-rw-r--r-- | program/js/list.js | 2 |
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(); } |