fix javascript chaining preventing effects
This commit is contained in:
parent
21563d09ce
commit
a5276dfe41
@ -22,17 +22,21 @@ $(document).ready(function() {
|
|||||||
$('body').css('margin-top', '20px');
|
$('body').css('margin-top', '20px');
|
||||||
|
|
||||||
// Build menu
|
// Build menu
|
||||||
$('#simplemenu').append(simplemenu).children('li.expanded').addClass('root').superfish({
|
$('#simplemenu')
|
||||||
animation : { opacity:"show", delay: 750 }
|
.append(simplemenu)
|
||||||
})
|
.superfish({
|
||||||
.find(">li[ul]")
|
hoverClass : "sfhover", animation : { opacity:"show", delay: 750 }
|
||||||
.mouseover(function(){
|
})
|
||||||
$("ul", this).bgIframe({opacity:false});
|
.find(">li[ul]")
|
||||||
})
|
.mouseover(function(){
|
||||||
.find("a")
|
$("ul", this).bgIframe({opacity:false});
|
||||||
.focus(function(){
|
})
|
||||||
$("ul", $("#simplemenu>li[ul]")).bgIframe({opacity:false});
|
.find("a")
|
||||||
});
|
.focus(function(){
|
||||||
|
$("ul", $("#simplemenu>li[ul]")).bgIframe({opacity:false});
|
||||||
|
})
|
||||||
|
|
||||||
|
$('#simplemenu').children('li.expanded').addClass('root');
|
||||||
});
|
});
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user