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:
Andrew Ozz 2014-08-19 18:42:56 +00:00
parent 2441202954
commit 885a072da6
1 changed files with 1 additions and 1 deletions

View File

@ -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();