Remove setValue call from live extension setup

It's already done by the parent, and done in a more complex manner
(with whitespace preservation) which this destroys.

Change-Id: I0385abe4093223b1804b11d77222cf8212a6360f
This commit is contained in:
Ed Sanders 2014-06-11 20:30:47 +01:00
parent 10cda9359a
commit 26535382e5

View file

@ -80,8 +80,6 @@ ve.ui.MWLiveExtensionInspector.prototype.getSetupProcess = function ( data ) {
this.getFragment().select(); this.getFragment().select();
this.node = this.getFragment().getSelectedNode(); this.node = this.getFragment().getSelectedNode();
} }
this.input.setValue( this.node.getAttribute( 'mw' ).body.extsrc );
this.input.on( 'change', this.onChangeHandler ); this.input.on( 'change', this.onChangeHandler );
}, this ); }, this );
}; };