TinyMCE: remove extra space in tooltip.

This prevents wrapping and looks better, even though there seems to be some space between the other control key characters.

See #38063.


Built from https://develop.svn.wordpress.org/trunk@39284


git-svn-id: http://core.svn.wordpress.org/trunk@39224 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Ella Iseulde Van Dorpe 2016-11-17 23:59:30 +00:00
parent 9bc6aa1570
commit 32b3a7f772
4 changed files with 4 additions and 4 deletions

View File

@ -553,10 +553,10 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) {
var access = 'Shift+Alt+';
var meta = 'Ctrl+';
// For Mac: shift = \u2303, ctrl = \u21E7, cmd = \u2318, alt = \u2325
// For Mac: ctrl = \u2303, cmd = \u2318, alt = \u2325
if ( tinymce.Env.mac ) {
access = '\u2303\u2325 ';
access = '\u2303\u2325';
meta = '\u2318';
}

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7-beta4-39283';
$wp_version = '4.7-beta4-39284';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.