Coding standards after [36510].
Built from https://develop.svn.wordpress.org/trunk@36967 git-svn-id: http://core.svn.wordpress.org/trunk@36935 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4ecad983b3
commit
0020bcd796
|
@ -840,9 +840,9 @@ var wpNavMenu;
|
||||||
* When a navigation menu is saved, store a JSON representation of all form data
|
* When a navigation menu is saved, store a JSON representation of all form data
|
||||||
* in a single input to avoid PHP `max_input_vars` limitations. See #14134.
|
* in a single input to avoid PHP `max_input_vars` limitations. See #14134.
|
||||||
*/
|
*/
|
||||||
$('#update-nav-menu').submit(function() {
|
$( '#update-nav-menu' ).submit( function() {
|
||||||
var navMenuData = $('#update-nav-menu').serializeArray();
|
var navMenuData = $( '#update-nav-menu' ).serializeArray();
|
||||||
$('[name="nav-menu-data"]').val( JSON.stringify( navMenuData ) );
|
$( '[name="nav-menu-data"]' ).val( JSON.stringify( navMenuData ) );
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.5-beta3-36966';
|
$wp_version = '4.5-beta3-36967';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue