Remove this.$ remnants

Change-Id: I17b9f795693cc4ca1efe3678dbde9bce5d1a3da3
This commit is contained in:
Ed Sanders 2015-05-09 11:52:57 +01:00
parent b54dd8a6d2
commit 5ce015011e
1 changed files with 1 additions and 8 deletions

View File

@ -50,22 +50,18 @@ ve.ui.MWMathInspector.prototype.initialize = function () {
// Position
this.displaySelect = new OO.ui.ButtonSelectWidget( {
$: this.$,
items: [
new OO.ui.ButtonOptionWidget( {
$: this.$,
data: 'default',
icon: 'math-display-default',
label: ve.msg( 'math-visualeditor-mwmathinspector-display-default' )
} ),
new OO.ui.ButtonOptionWidget( {
$: this.$,
data: 'inline',
icon: 'math-display-inline',
label: ve.msg( 'math-visualeditor-mwmathinspector-display-inline' )
} ),
new OO.ui.ButtonOptionWidget( {
$: this.$,
data: 'block',
icon: 'math-display-block',
label: ve.msg( 'math-visualeditor-mwmathinspector-display-block' )
@ -73,20 +69,17 @@ ve.ui.MWMathInspector.prototype.initialize = function () {
]
} );
this.idInput = new OO.ui.TextInputWidget( { $: this.$ } );
this.idInput = new OO.ui.TextInputWidget();
var inputField = new OO.ui.FieldLayout( this.input, {
$: this.$,
align: 'top',
label: ve.msg( 'math-visualeditor-mwmathinspector-title' )
} ),
displayField = new OO.ui.FieldLayout( this.displaySelect, {
$: this.$,
align: 'top',
label: ve.msg( 'math-visualeditor-mwmathinspector-display' )
} ),
idField = new OO.ui.FieldLayout( this.idInput, {
$: this.$,
align: 'top',
label: ve.msg( 'math-visualeditor-mwmathinspector-id' )
} );