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 93e87a5b31
commit 1371764abd
1 changed files with 2 additions and 2 deletions

View File

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