Changeset 39570 for branches/4.7
- Timestamp:
- 12/12/2016 01:56:53 AM (8 years ago)
- Location:
- branches/4.7
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
-
branches/4.7/src/wp-admin/js/customize-nav-menus.js
r39503 r39570 1170 1170 // @todo It would be better if this was added directly on the setting itself, as opposed to the control. 1171 1171 control.setting.validate = function( value ) { 1172 return parseInt( value, 10 ); 1172 if ( '' === value ) { 1173 return 0; 1174 } else { 1175 return parseInt( value, 10 ); 1176 } 1173 1177 }; 1174 1178 -
branches/4.7/src/wp-includes/class-wp-customize-nav-menus.php
r39507 r39570 532 532 public function customize_register() { 533 533 534 /* 535 * Preview settings for nav menus early so that the sections and controls will be added properly. 536 * See https://github.com/xwp/wp-customize-snapshots/blob/962586659688a5b1fd9ae93618b7ce2d4e7a421c/php/class-customize-snapshot-manager.php#L506-L543 537 */ 534 // Preview settings for nav menus early so that the sections and controls will be added properly. 538 535 $nav_menus_setting_ids = array(); 539 536 foreach ( array_keys( $this->manager->unsanitized_post_values() ) as $setting_id ) { … … 543 540 } 544 541 $this->manager->add_dynamic_settings( $nav_menus_setting_ids ); 545 foreach ( $nav_menus_setting_ids as $setting_id ) { 546 $setting = $this->manager->get_setting( $setting_id ); 547 if ( $setting ) { 548 $setting->preview(); 542 if ( ! $this->manager->doing_ajax( 'customize_save' ) ) { 543 foreach ( $nav_menus_setting_ids as $setting_id ) { 544 $setting = $this->manager->get_setting( $setting_id ); 545 if ( $setting ) { 546 $setting->preview(); 547 } 549 548 } 550 549 }
Note: See TracChangeset
for help on using the changeset viewer.