Changeset 25708
- Timestamp:
- 10/07/2013 01:37:00 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/nav-menu.js
r25687 r25708 404 404 405 405 // Hide all links by default 406 $( '.menu-item-settings .field-move a' ). hide();406 $( '.menu-item-settings .field-move a' ).css( 'display', 'none' ); 407 407 408 408 $( '.item-edit' ).each( function() { … … 410 410 movement = [], 411 411 availableMovement = '', 412 menuItem = $this. parents( 'li.menu-item' ).first(),412 menuItem = $this.closest( 'li.menu-item' ).first(), 413 413 depth = menuItem.menuItemDepth(), 414 414 isPrimaryMenuItem = ( 0 === depth ), 415 itemName = $this. parents( '.menu-item-handle' ).find( '.menu-item-title' ).text(),415 itemName = $this.closest( '.menu-item-handle' ).find( '.menu-item-title' ).text(), 416 416 position = parseInt( menuItem.index() ), 417 417 prevItemDepth = ( isPrimaryMenuItem ) ? depth : parseInt( depth - 1 ), … … 424 424 if ( 0 !== position ) { 425 425 var thisLink = menuItem.find( '.menus-move-up' ); 426 thisLink.prop( 'title', menus.moveUp ). show();426 thisLink.prop( 'title', menus.moveUp ).css( 'display', 'inline' ); 427 427 } 428 428 429 429 if ( 0 !== position && isPrimaryMenuItem ) { 430 430 var thisLink = menuItem.find( '.menus-move-top' ); 431 thisLink.prop( 'title', menus.moveToTop ). show();431 thisLink.prop( 'title', menus.moveToTop ).css( 'display', 'inline' ); 432 432 } 433 433 434 434 if ( position + 1 !== totalMenuItems && 0 !== position ) { 435 435 var thisLink = menuItem.find( '.menus-move-down' ); 436 thisLink.prop( 'title', menus.moveDown ). show();436 thisLink.prop( 'title', menus.moveDown ).css( 'display', 'inline' ); 437 437 } 438 438 439 439 if ( 0 === position && 0 !== hasSameDepthSibling ) { 440 440 var thisLink = menuItem.find( '.menus-move-down' ); 441 thisLink.prop( 'title', menus.moveDown ). show();441 thisLink.prop( 'title', menus.moveDown ).css( 'display', 'inline' ); 442 442 } 443 443 … … 445 445 var thisLink = menuItem.find( '.menus-move-left' ), 446 446 thisLinkText = menus.outFrom.replace( '%s', prevItemNameLeft ); 447 thisLink.prop( 'title', menus.moveOutFrom.replace( '%s', prevItemNameLeft ) ).html( thisLinkText ). show();447 thisLink.prop( 'title', menus.moveOutFrom.replace( '%s', prevItemNameLeft ) ).html( thisLinkText ).css( 'display', 'inline' ); 448 448 } 449 449 … … 452 452 var thisLink = menuItem.find( '.menus-move-right' ), 453 453 thisLinkText = menus.under.replace( '%s', prevItemNameRight ); 454 thisLink.prop( 'title', menus.moveUnder.replace( '%s', prevItemNameRight ) ).html( thisLinkText ). show();454 thisLink.prop( 'title', menus.moveUnder.replace( '%s', prevItemNameRight ) ).html( thisLinkText ).css( 'display', 'inline' ); 455 455 } 456 456 }
Note: See TracChangeset
for help on using the changeset viewer.