Changeset 40482
- Timestamp:
- 04/19/2017 10:17:25 PM (7 years ago)
- Location:
- branches/4.7
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
-
branches/4.7/src/wp-includes/js/mce-view.js
r39282 r40482 709 709 editor.dom.setAttrib( node, 'data-wpview-text', encodeURIComponent( text ) ); 710 710 wp.mce.views.createInstance( type, text, match.options, force ).render(); 711 712 editor.selection.select( node ); 713 editor.nodeChanged(); 711 714 editor.focus(); 712 715 -
branches/4.7/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
r39284 r40482 983 983 function hide( event ) { 984 984 if ( activeToolbar ) { 985 if ( activeToolbar.tempHide || event.type === 'hide' ) {985 if ( activeToolbar.tempHide || event.type === 'hide' || event.type === 'blur' ) { 986 986 activeToolbar.hide(); 987 987 activeToolbar = false;
Note: See TracChangeset
for help on using the changeset viewer.