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:
parent
b6eb753618
commit
ce10a63e67
@ -793,7 +793,7 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) {
|
|||||||
clearTimeout( timeout );
|
clearTimeout( timeout );
|
||||||
|
|
||||||
timeout = setTimeout( function() {
|
timeout = setTimeout( function() {
|
||||||
activeToolbar.show();
|
activeToolbar && activeToolbar.show && activeToolbar.show();
|
||||||
}, 250 );
|
}, 250 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user