2012-08-20 14:35:33 -04:00
|
|
|
/**
|
|
|
|
* navigation.js
|
|
|
|
*
|
|
|
|
* Handles toggling the navigation menu for small screens.
|
|
|
|
*/
|
|
|
|
|
|
|
|
jQuery( document ).ready( function( $ ) {
|
2012-08-20 15:14:51 -04:00
|
|
|
if ( ! $( '#masthead .menu' ).children().length ) {
|
|
|
|
$( '#masthead .menu-toggle' ).hide();
|
2012-08-20 14:35:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$( '.menu-toggle' ).off( 'click' ).click( function() {
|
|
|
|
$( '#masthead .menu' ).stop().slideToggle();
|
|
|
|
$( this ).toggleClass( 'toggled-on' );
|
|
|
|
} );
|
|
|
|
} );
|