Make WordPress Core

Changeset 26623


Ignore:
Timestamp:
12/04/2013 07:07:40 PM (11 years ago)
Author:
nacin
Message:

Return some semicolons. fixes #25594.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/js/nav-menu.js

    r26613 r26623  
    389389                api.moveMenuItem( $( this ).parents( 'li.menu-item' ).find( 'a.item-edit' ), 'up' );
    390390                e.preventDefault();
    391             })
     391            });
    392392            menu.on( 'click', '.menus-move-down', function ( e ) {
    393393                api.moveMenuItem( $( this ).parents( 'li.menu-item' ).find( 'a.item-edit' ), 'down' );
    394394                e.preventDefault();
    395             })
     395            });
    396396            menu.on( 'click', '.menus-move-top', function ( e ) {
    397397                api.moveMenuItem( $( this ).parents( 'li.menu-item' ).find( 'a.item-edit' ), 'top' );
    398398                e.preventDefault();
    399             })
     399            });
    400400            menu.on( 'click', '.menus-move-left', function ( e ) {
    401401                api.moveMenuItem( $( this ).parents( 'li.menu-item' ).find( 'a.item-edit' ), 'left' );
Note: See TracChangeset for help on using the changeset viewer.