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