Changeset 40481
- Timestamp:
- 04/19/2017 10:09:44 PM (7 years ago)
- Location:
- trunk/src/wp-includes/js
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/mce-view.js
r40019 r40481 730 730 editor.dom.setAttrib( node, 'data-wpview-text', encodeURIComponent( text ) ); 731 731 wp.mce.views.createInstance( type, text, match.options, force ).render(); 732 733 editor.selection.select( node ); 734 editor.nodeChanged(); 732 735 editor.focus(); 733 736 -
trunk/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
r39916 r40481 993 993 function hide( event ) { 994 994 if ( activeToolbar ) { 995 if ( activeToolbar.tempHide || event.type === 'hide' ) {995 if ( activeToolbar.tempHide || event.type === 'hide' || event.type === 'blur' ) { 996 996 activeToolbar.hide(); 997 997 activeToolbar = false;
Note: See TracChangeset
for help on using the changeset viewer.