Fixes for IE

This commit is contained in:
Francis Lachapelle
2014-09-05 16:04:29 -04:00
parent 984e208dd9
commit b639c2d251
3 changed files with 31 additions and 76 deletions
+2 -3
View File
@@ -450,14 +450,13 @@ function onResizeClick() {
var state = "collapse";
if (searchFiltersList[0].visible()) {
var state = "rise";
state = "rise";
searchFiltersList.fadeOut(300, function() {
adjustResultsTable(state);
img.removeClassName('collapse').addClassName('rise');
});
}
else {
state = "collapse"
adjustResultsTable(state);
searchFiltersList.fadeIn();
img.removeClassName('rise').addClassName('collapse');
@@ -490,4 +489,4 @@ function initSearchMailView () {
var state = ($("searchFiltersList").visible() ? "collapse": "rise");
adjustResultsTable(state);
});
}
}