Make WordPress Core

Changeset 39284


Ignore:
Timestamp:
11/17/2016 11:58:11 PM (7 years ago)
Author:
iseulde
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js

    r39204 r39284  
    554554            var meta = 'Ctrl+';
    555555
    556             // For Mac: shift = \u2303, ctrl = \u21E7, cmd = \u2318, alt = \u2325
     556            // For Mac: ctrl = \u2303, cmd = \u2318, alt = \u2325
    557557
    558558            if ( tinymce.Env.mac ) {
    559                 access = '\u2303\u2325 ';
     559                access = '\u2303\u2325';
    560560                meta = '\u2318';
    561561            }
Note: See TracChangeset for help on using the changeset viewer.