summaryrefslogtreecommitdiff
path: root/skins/classic/functions.js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-04-12 14:01:07 +0200
committerAleksander Machniak <alec@alec.pl>2014-04-12 14:01:07 +0200
commit64542fc8035b71252dd7d8678dd82e1a910a76c4 (patch)
tree5d0458ca0388d54547cbcc1fdd7b4bb145741a0f /skins/classic/functions.js
parent0ca75d488059b685ae344dbb629aa935dce3ab79 (diff)
Drop support for IE6, move IE7/IE8 support to legacy_browser plugin, update to jQuery-2.1.0
Diffstat (limited to 'skins/classic/functions.js')
-rw-r--r--skins/classic/functions.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/skins/classic/functions.js b/skins/classic/functions.js
index 049e4d5d4..144923d0d 100644
--- a/skins/classic/functions.js
+++ b/skins/classic/functions.js
@@ -155,11 +155,6 @@ show_popupmenu: function(popup, show)
}
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: function(show)
}
});
$('#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 @@ switch_preview_pane: function(elem)
}
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';