Editor: fix exiting DFW with the keyboard shortcut on Mac (Opt+Ctrl+W).
Fixes #36222. git-svn-id: https://develop.svn.wordpress.org/trunk@37003 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1046806376
commit
3858c09d02
@ -887,10 +887,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function fadeOut( event ) {
|
function fadeOut( event ) {
|
||||||
var key = event && event.keyCode;
|
var isMac,
|
||||||
|
key = event && event.keyCode;
|
||||||
|
|
||||||
// fadeIn and return on Escape and keyboard shortcut Alt+Shift+W.
|
if ( window.navigator.platform ) {
|
||||||
if ( key === 27 || ( key === 87 && event.altKey && event.shiftKey ) ) {
|
isMac = ( window.navigator.platform.indexOf( 'Mac' ) > -1 );
|
||||||
|
}
|
||||||
|
|
||||||
|
// fadeIn and return on Escape and keyboard shortcut Alt+Shift+W and Ctrl+Opt+W.
|
||||||
|
if ( key === 27 || ( key === 87 && event.altKey && ( ( ! isMac && event.shiftKey ) || ( isMac && event.ctrlKey ) ) ) ) {
|
||||||
fadeIn( event );
|
fadeIn( event );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user