Twenty Twelve: update navigation script to check for missing button and menu children earlier; allows an empty menu to be set without showing the button. See #21678.
git-svn-id: http://core.svn.wordpress.org/trunk@21929 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2b044bc85f
commit
e538b8c697
|
@ -98,7 +98,7 @@ function twentytwelve_scripts_styles() {
|
|||
/*
|
||||
* Adds JavaScript for handling the navigation menu hide-and-show behavior.
|
||||
*/
|
||||
wp_enqueue_script( 'twentytwelve-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120824', true );
|
||||
wp_enqueue_script( 'twentytwelve-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120920', true );
|
||||
|
||||
/*
|
||||
* Loads our special font CSS file.
|
||||
|
|
|
@ -7,9 +7,15 @@
|
|||
var button = document.getElementById( 'site-navigation' ).getElementsByTagName( 'h3' )[0],
|
||||
menu = document.getElementById( 'site-navigation' ).getElementsByTagName( 'ul' )[0];
|
||||
|
||||
if ( undefined == button || undefined == menu )
|
||||
if ( undefined === button )
|
||||
return false;
|
||||
|
||||
// Hide button if menu is missing or empty.
|
||||
if ( undefined === menu || ! menu.childNodes.length ) {
|
||||
button.style.display = 'none';
|
||||
return false;
|
||||
}
|
||||
|
||||
button.onclick = function() {
|
||||
if ( -1 == menu.className.indexOf( 'nav-menu' ) )
|
||||
menu.className = 'nav-menu';
|
||||
|
@ -22,8 +28,4 @@
|
|||
menu.className += ' toggled-on';
|
||||
}
|
||||
};
|
||||
|
||||
// Hide menu toggle button if menu is empty.
|
||||
if ( ! menu.childNodes.length )
|
||||
button.style.display = 'none';
|
||||
} )();
|
Loading…
Reference in New Issue