wp-customize-nav-menu-refresh.js 467 B

123456789101112131415
  1. ( function () {
  2. // Refresh the preview when menu controls are changed
  3. wp.customize.control.bind( 'change', ( control ) => {
  4. if ( control.extended( wp.customize.Menus.MenuItemControl ) ) {
  5. wp.customize.previewer.refresh();
  6. }
  7. } );
  8. // Refresh the preview when menu items are removed
  9. wp.customize.control.bind( 'remove', ( control ) => {
  10. if ( control.extended( wp.customize.Menus.MenuItemControl ) ) {
  11. wp.customize.previewer.refresh();
  12. }
  13. } );
  14. } )();