From f6777712dc8c8ed2316e2926e98bb081e3785e40 Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Fri, 12 Jul 2013 04:00:55 -0400
Subject: [PATCH] Enable fixed list header in IE7, too. Seems to work after some testing

---
 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 f4bc425..08e4444 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -157,7 +157,7 @@
       $(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();
     }
 

--
Gitblit v1.9.1