Customize: Prevent edit shortcut from losing event handler after selective refresh.
Props sirbrillig. See #27403. Fixes #39100. git-svn-id: https://develop.svn.wordpress.org/trunk@39581 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
24228daabf
commit
ae9854e338
@ -121,12 +121,12 @@ wp.customize.selectiveRefresh = ( function( $, api ) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$shortcut = partial.createEditShortcut();
|
$shortcut = partial.createEditShortcut();
|
||||||
partial.addEditShortcutToPlacement( placement, $shortcut );
|
|
||||||
$shortcut.on( 'click', function( event ) {
|
$shortcut.on( 'click', function( event ) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
partial.showControl();
|
partial.showControl();
|
||||||
} );
|
} );
|
||||||
|
partial.addEditShortcutToPlacement( placement, $shortcut );
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user