Ticket #21562: 21562.patch

File 21562.patch, 546 bytes (added by cfinke, 9 months ago)

Hides the 'Show navigation' button if there are no navigation menu items.

  • js/theme.js

     
    1010                timeout = false; 
    1111 
    1212        $.fn.smallMenu = function() { 
     13                if ( ! masthead.find( '.menu' ).children().length ) { 
     14                        $( '.menu-toggle' ).remove(); 
     15                        return; 
     16                } 
     17 
    1318                masthead.find( '.site-navigation' ).removeClass( 'main-navigation' ).addClass( 'main-small-navigation' ); 
    1419                masthead.find( '.site-navigation h3' ).removeClass( 'assistive-text' ).addClass( 'menu-toggle' ); 
    1520