TinyMCE: prevent undefined error in `toolbar.hide()`.

See #32604.

git-svn-id: https://develop.svn.wordpress.org/trunk@32968 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2015-06-27 02:23:18 +00:00
parent b6eb753618
commit ce10a63e67
1 changed files with 1 additions and 1 deletions

View File

@ -793,7 +793,7 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) {
clearTimeout( timeout );
timeout = setTimeout( function() {
activeToolbar.show();
activeToolbar && activeToolbar.show && activeToolbar.show();
}, 250 );
}
}