Fix typo in the 'wpeditimage' plugin, see #28705
git-svn-id: https://develop.svn.wordpress.org/trunk@29540 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
2441202954
commit
885a072da6
@ -880,7 +880,7 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||
} else if ( cmd === 'JustifyLeft' || cmd === 'JustifyRight' || cmd === 'JustifyCenter' ) {
|
||||
node = editor.selection.getNode();
|
||||
align = cmd.substr(7).toLowerCase();
|
||||
align = 'align' + align,
|
||||
align = 'align' + align;
|
||||
DL = dom.getParent( node, 'dl.wp-caption' );
|
||||
|
||||
removeToolbar();
|
||||
|
Loading…
Reference in New Issue
Block a user