Changeset 26613
- Timestamp:
- 12/04/2013 05:09:20 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/nav-menu.js
r26233 r26613 380 380 381 381 initAccessibility : function() { 382 var menu = $( '#menu-to-edit' ); 383 382 384 api.refreshKeyboardAccessibility(); 383 385 api.refreshAdvancedAccessibility(); 384 386 385 387 // Events 386 $( '.menus-move-up' ).on( 'click', function ( e ) {388 menu.on( 'click', '.menus-move-up', function ( e ) { 387 389 api.moveMenuItem( $( this ).parents( 'li.menu-item' ).find( 'a.item-edit' ), 'up' ); 388 390 e.preventDefault(); 389 }) ;390 $( '.menus-move-down' ).on( 'click', function ( e ) {391 }) 392 menu.on( 'click', '.menus-move-down', function ( e ) { 391 393 api.moveMenuItem( $( this ).parents( 'li.menu-item' ).find( 'a.item-edit' ), 'down' ); 392 394 e.preventDefault(); 393 }) ;394 $( '.menus-move-top' ).on( 'click', function ( e ) {395 }) 396 menu.on( 'click', '.menus-move-top', function ( e ) { 395 397 api.moveMenuItem( $( this ).parents( 'li.menu-item' ).find( 'a.item-edit' ), 'top' ); 396 398 e.preventDefault(); 397 }) ;398 $( '.menus-move-left' ).on( 'click', function ( e ) {399 }) 400 menu.on( 'click', '.menus-move-left', function ( e ) { 399 401 api.moveMenuItem( $( this ).parents( 'li.menu-item' ).find( 'a.item-edit' ), 'left' ); 400 402 e.preventDefault(); 401 403 }); 402 $( '.menus-move-right' ).on( 'click', function ( e ) {404 menu.on( 'click', '.menus-move-right', function ( e ) { 403 405 api.moveMenuItem( $( this ).parents( 'li.menu-item' ).find( 'a.item-edit' ), 'right' ); 404 406 e.preventDefault();
Note: See TracChangeset
for help on using the changeset viewer.