Make WordPress Core

Ticket #31457: 31457.patch

File 31457.patch, 807 bytes (added by abhishekfdd, 10 years ago)

Patch to fix the issue

  • wp-admin/js/common.js

     
    756756                                        self.disableSortables();
    757757                                }
    758758                        });
     759                       
     760                        // Hide menu on focus out
     761                        $( '#wpbody-content' ).on( 'touchstart.wp-responsive click.wp-responsive', function () {
     762                            if ( $wpwrap.hasClass( 'wp-responsive-open' ) ) {
     763                                $( '#wp-admin-bar-menu-toggle' ).find( 'a' ).attr( 'aria-expanded', 'false' );
     764                                $wpwrap.removeClass( 'wp-responsive-open' );
     765                            }
     766                        });
    759767                },
    760768
    761769                activate: function() {