This commit is contained in:
Mike Jolley 2016-12-14 19:31:26 +00:00
parent 852db2bfb6
commit 0531bd72ea
1 changed files with 2 additions and 2 deletions

View File

@ -131,8 +131,8 @@ jQuery( function( $ ) {
// Sort the fields.
rows.sort( function( a, b ) {
var asort = $( a ).data('priority'),
bsort = $( b ).data('priority');
var asort = $( a ).data( 'priority' ),
bsort = $( b ).data( 'priority' );
if ( asort > bsort ) {
return 1;