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.



git-svn-id: https://develop.svn.wordpress.org/trunk@39284 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ella van Dorpe 2016-11-17 23:58:11 +00:00
parent bd320a9965
commit 48830b5e10
1 changed files with 2 additions and 2 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';
}