mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 06:46:26 +00:00
Cursor fix after link insertion
When a link was inserted, the cursor position was backwards (at the beginning of the word rather than its end) - this commit fixes that problem. Also, thanks for the help Ed! Bug: 53560 Change-Id: I04fe1ca4c9126898e7bf85cdf519794d66b4f38b
This commit is contained in:
parent
4291b2a308
commit
84cca4f472
|
@ -166,7 +166,7 @@ ve.ui.AnnotationInspector.prototype.onClose = function ( action ) {
|
|||
// Apply new annotation
|
||||
fragment.annotateContent( 'set', annotation );
|
||||
}
|
||||
if ( action === 'back' ) {
|
||||
if ( action === 'back' || insert ) {
|
||||
// Restore selection to what it was before we expanded it
|
||||
selection = this.previousSelection;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue