Changeset 30992
- Timestamp:
- 12/23/2014 05:23:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/customize-widgets.js
r30760 r30992 685 685 * Handle selecting a sidebar to move to 686 686 */ 687 this.container.find( '.widget-area-select' ).on( 'click keypress', 'li', function( e ) {687 this.container.find( '.widget-area-select' ).on( 'click keypress', 'li', function( event ) { 688 688 if ( event.type === 'keypress' && ( event.which !== 13 && event.which !== 32 ) ) { 689 689 return; 690 690 } 691 e .preventDefault();691 event.preventDefault(); 692 692 selectSidebarItem( $( this ) ); 693 693 } );
Note: See TracChangeset
for help on using the changeset viewer.