footer
This commit is contained in:
parent
76f58f759a
commit
771ee2a545
@ -51,9 +51,15 @@ $(document).ready(function(){
|
||||
$(this).toggleClass("on");
|
||||
$(this).find(".site_depth").slideToggle("fast");
|
||||
});
|
||||
$(".footer-logo h2 a").focus(function(){
|
||||
$('.family_site').toggleClass("on");
|
||||
$('.family_site').find(".site_depth").slideToggle("fast");
|
||||
$(".footer-logo h2 a").keydown(function(){
|
||||
if ( event.keyCode == 9 || event.which == 9 ) {
|
||||
$('.family_site').toggleClass("on");
|
||||
$('.family_site').find(".site_depth").slideToggle("fast");
|
||||
}
|
||||
if( event.which === 9 && event.shiftKey ) {
|
||||
$('.family_site').removeClass("on");
|
||||
$('.family_site').find(".site_depth").hide();
|
||||
}
|
||||
});
|
||||
$(".family_site .site_depth > div:nth-of-type(8) a").focusout(function(){
|
||||
$('.family_site').removeClass("on");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user