Editor DFW v2: do not fade out on using keyboard shortcuts in TinyMCE (Alt+Shift+letter).
Fixes #30539. git-svn-id: https://develop.svn.wordpress.org/trunk@30693 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
4a3bceaea9
commit
eb2f29f1c3
|
@ -880,7 +880,7 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( event && ( event.metaKey || ( event.ctrlKey && ! event.altKey ) || ( key && (
|
if ( event && ( event.metaKey || ( event.ctrlKey && ! event.altKey ) || ( event.altKey && event.shiftKey ) || ( key && (
|
||||||
// Special keys ( tab, ctrl, alt, esc, arrow keys... )
|
// Special keys ( tab, ctrl, alt, esc, arrow keys... )
|
||||||
( key <= 47 && key !== 8 && key !== 13 && key !== 32 && key !== 46 ) ||
|
( key <= 47 && key !== 8 && key !== 13 && key !== 32 && key !== 46 ) ||
|
||||||
// Windows keys
|
// Windows keys
|
||||||
|
|
Loading…
Reference in New Issue