diff options
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(); } |