blob: 2f381f47465fcf9c739fbbee6c839e637b2e0a0a [file] [log] [blame]
/// Drop down style ///
$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).delay(100).fadeIn(500);
}, function() {
$(this).find('.dropdown-menu').stop(true, true).delay(100).fadeOut(500);
});