From 64542fc8035b71252dd7d8678dd82e1a910a76c4 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sat, 12 Apr 2014 08:01:07 -0400
Subject: [PATCH] Drop support for IE6, move IE7/IE8 support to legacy_browser plugin, update to jQuery-2.1.0

---
 skins/classic/functions.js |   10 +---------
 1 files changed, 1 insertions(+), 9 deletions(-)

diff --git a/skins/classic/functions.js b/skins/classic/functions.js
index 049e4d5..144923d 100644
--- a/skins/classic/functions.js
+++ b/skins/classic/functions.js
@@ -155,11 +155,6 @@
   }
 
   obj[show?'show':'hide']();
-
-  if (bw.ie6 && this.popups[popup].overlap) {
-    $('select').css('visibility', show?'hidden':'inherit');
-    $('select', obj).css('visibility', 'inherit');
-  }
 },
 
 dragmenu: function(show)
@@ -319,9 +314,6 @@
       }
     });
     $('#listmenu fieldset').css("min-height", maxheight+"px")
-    // IE6 complains if you set this attribute using either method:
-    //$('#listmenu fieldset').css({'height':'auto !important'});
-    //$('#listmenu fieldset').css("height","auto !important");
       .height(maxheight);
   };
 },
@@ -470,7 +462,7 @@
   }
   else {
     prev_frm.hide();
-    if (bw.ie6 || bw.ie7) {
+    if (bw.ie7) {
       var fr = document.getElementById('mailcontframe');
       fr.style.bottom = 0;
       fr.style.height = parseInt(fr.parentNode.offsetHeight)+'px';

--
Gitblit v1.9.1