mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 14:56:20 +00:00
Don't select contents of textarea in extension inspector
Assume this was copied over from annotation inspector but doesn't really make sense for a large textarea. Change-Id: If731d22d09fc4c5636301a3da3089096555a9dc1
This commit is contained in:
parent
310601ef47
commit
c0221066d7
|
@ -136,7 +136,7 @@ ve.ui.MWExtensionInspector.prototype.getReadyProcess = function ( data ) {
|
|||
return ve.ui.MWExtensionInspector.super.prototype.getReadyProcess.call( this, data )
|
||||
.next( function () {
|
||||
// Focus the input
|
||||
this.input.focus().select();
|
||||
this.input.focus();
|
||||
}, this );
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue