Added function for dropdown menu

This commit is contained in:
Geetha Mondi 2017-06-28 12:59:30 +05:30
parent 4930e7d065
commit d27eff9441
1 changed files with 5 additions and 0 deletions

View File

@ -53,6 +53,11 @@
/* ---------------------------------------------
Nav panel classic
--------------------------------------------- */
$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeIn(500);
}, function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeOut(500);
});
function _initScroll(){