Make WordPress Core

Ticket #34033: 34033-3.diff

File 34033-3.diff, 638 bytes (added by tywayne, 9 years ago)

Patch for Twenty Thirteen

  • src/wp-content/themes/twentythirteen/js/functions.js

     
    3434         * Enables menu toggle for small screens.
    3535         */
    3636        ( function() {
    37                 if ( ! nav || ! button ) {
     37                if ( ! nav.length || ! button.length ) {
    3838                        return;
    3939                }
    4040
    4141                // Hide button if menu is missing or empty.
    42                 if ( ! menu || ! menu.children().length ) {
     42                if ( ! menu.length || ! menu.children().length ) {
    4343                        button.hide();
    4444                        return;
    4545                }