Update breadcrumb hover effect

-Use 1s interval (instead of 2s) until showing panel

-Use .fadeOut on panel focus, for smoother transition
This commit is contained in:
Brian Federle 2012-06-11 15:12:57 -07:00
parent d7f00f2c45
commit 5528cdd954
1 changed files with 2 additions and 2 deletions

View File

@ -396,8 +396,8 @@
$hiddenPanels.addClass('mouseover-hidden');
setTimeout(function() {
$('.mouseover-hidden').hide("slow");
} ,2000);
$('.mouseover-hidden').fadeOut('fast');
}, 1000);
}
}
));