fix main menu colors, fix facets display on IE8

This commit is contained in:
Florian BLOUET
2015-11-26 17:38:33 +01:00
parent 6c469ea28b
commit 3807b2f74c
6 changed files with 25 additions and 21 deletions

View File

@@ -623,8 +623,11 @@
// hide helper and restore added classes and the title
function hide(event) {
if( $.tooltip.currentHover && settings($.tooltip.current).isBrowsable ) {
var isBrowsable = false;
if( $.tooltip.current !== null ) {
isBrowsable = settings($.tooltip.current).isBrowsable;
}
if( $.tooltip.currentHover && isBrowsable ) {
return;
}