Merge "Don't select contents of textarea in extension inspector"

This commit is contained in:
jenkins-bot 2014-06-11 17:46:48 +00:00 committed by Gerrit Code Review
commit 4ba3268498

View file

@ -136,7 +136,7 @@ ve.ui.MWExtensionInspector.prototype.getReadyProcess = function ( data ) {
return ve.ui.MWExtensionInspector.super.prototype.getReadyProcess.call( this, data ) return ve.ui.MWExtensionInspector.super.prototype.getReadyProcess.call( this, data )
.next( function () { .next( function () {
// Focus the input // Focus the input
this.input.focus().select(); this.input.focus();
}, this ); }, this );
}; };