Editor DFW v2: do not fade out on using keyboard shortcuts in TinyMCE (Alt+Shift+letter).
Fixes #30539. Built from https://develop.svn.wordpress.org/trunk@30693 git-svn-id: http://core.svn.wordpress.org/trunk@30683 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c9c02be354
commit
16e54ae8c0
|
@ -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
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.1-beta2-30692';
|
$wp_version = '4.1-beta2-30693';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue