35ad2034b2
git-svn-id: https://develop.svn.wordpress.org/trunk@21557 602fd350-edb4-49c9-b593-d223f7449a82
16 lines
381 B
JavaScript
16 lines
381 B
JavaScript
/**
|
|
* navigation.js
|
|
*
|
|
* Handles toggling the navigation menu for small screens.
|
|
*/
|
|
|
|
jQuery( document ).ready( function( $ ) {
|
|
if ( ! $( '#masthead .menu' ).children().length ) {
|
|
$( '#masthead .menu-toggle' ).hide();
|
|
}
|
|
|
|
$( '.menu-toggle' ).off( 'click' ).click( function() {
|
|
$( '#masthead .menu' ).stop().slideToggle();
|
|
$( this ).toggleClass( 'toggled-on' );
|
|
} );
|
|
} ); |