TinyMCE: when inserting a wpview, place the caret after is so the user can continue typing without interruption.

Props iseulde.
Fixes #39337.

git-svn-id: https://develop.svn.wordpress.org/trunk@39903 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2017-01-15 02:40:30 +00:00
parent 976976b4a1
commit 7592ee11bd

View File

@ -428,6 +428,7 @@
*/
replaceMarkers: function() {
this.getMarkers( function( editor, node ) {
var selected = node === editor.selection.getNode();
var $viewNode;
if ( ! this.loader && $( node ).text() !== this.text ) {
@ -440,6 +441,13 @@
);
editor.$( node ).replaceWith( $viewNode );
if ( selected ) {
setTimeout( function() {
editor.selection.select( $viewNode[0] );
editor.selection.collapse();
} );
}
} );
},