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:
Ed Sanders 2014-06-11 14:26:38 +01:00
parent 310601ef47
commit c0221066d7

View file

@ -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 );
};