Make WordPress Core

Ticket #35374: 35374.3.patch

File 35374.3.patch, 1.1 KB (added by afercia, 9 years ago)
  • src/wp-admin/js/nav-menu.js

     
    854854                        var searchTimer,
    855855                                inputEvent;
    856856
     857                        // Prevent form submission.
     858                        $( '#nav-menu-meta' ).on( 'submit', function( event ) {
     859                                event.preventDefault();
     860                        });
     861
    857862                        /*
    858                          * Use feature detection to determine whether password inputs should use
     863                         * Use feature detection to determine whether inputs should use
    859864                         * the `keyup` or `input` event. Input is preferred but lacks support
    860865                         * in legacy browsers. See changeset 34078, see also ticket #26600#comment:59
    861866                         */
     
    865870                                inputEvent = 'keyup';
    866871                        }
    867872
    868                         $( '.quick-search' ).on( inputEvent, function( e ) {
     873                        $( '.quick-search' ).on( inputEvent, function() {
    869874                                var t = $(this);
    870875
    871                                 if( 13 == e.which ) {
    872                                         api.updateQuickSearchResults( t );
    873                                         return false;
    874                                 }
    875 
    876876                                if( searchTimer ) clearTimeout(searchTimer);
    877877
    878878                                searchTimer = setTimeout(function(){