Remove stray comma, fixes #18929
git-svn-id: http://svn.automattic.com/wordpress/trunk@18967 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
99d80d6b4a
commit
6f04738d59
|
@ -60,7 +60,7 @@ jQuery(document).ready( function($) {
|
||||||
_wpnonce: $('#_wpnonce').val(),
|
_wpnonce: $('#_wpnonce').val(),
|
||||||
post_ID: $('#post_ID').val(),
|
post_ID: $('#post_ID').val(),
|
||||||
active_post_lock: $('#active_post_lock').val()
|
active_post_lock: $('#active_post_lock').val()
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -101,7 +101,7 @@ function wp_default_scripts( &$scripts ) {
|
||||||
'close' => __('Close'),
|
'close' => __('Close'),
|
||||||
) );
|
) );
|
||||||
|
|
||||||
$scripts->add( 'autosave', "/wp-includes/js/autosave$suffix.js", array('schedule', 'wp-ajax-response'), '20110927', 1 );
|
$scripts->add( 'autosave', "/wp-includes/js/autosave$suffix.js", array('schedule', 'wp-ajax-response'), '20111013', 1 );
|
||||||
|
|
||||||
$scripts->add( 'wp-lists', "/wp-includes/js/wp-lists$suffix.js", array('wp-ajax-response'), '20110521', 1 );
|
$scripts->add( 'wp-lists', "/wp-includes/js/wp-lists$suffix.js", array('wp-ajax-response'), '20110521', 1 );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue