Added function for dropdown menu
This commit is contained in:
parent
4930e7d065
commit
d27eff9441
1 changed files with 5 additions and 0 deletions
|
@ -53,6 +53,11 @@
|
||||||
/* ---------------------------------------------
|
/* ---------------------------------------------
|
||||||
Nav panel classic
|
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(){
|
function _initScroll(){
|
||||||
|
|
Loading…
Reference in a new issue