MWExtensionWindow: Use #setDir, not the removed #setRTL

Change-Id: I4090fa0375a93e095a644538b52853fd849b8749
This commit is contained in:
James D. Forrester 2016-11-09 11:13:09 -08:00
parent 28787b0f3c
commit 79befe3d67

View file

@ -91,7 +91,7 @@ ve.ui.MWExtensionWindow.prototype.getSetupProcess = function ( data, process ) {
this.input.$input.attr( 'placeholder', this.getInputPlaceholder() );
dir = this.constructor.static.dir || data.dir;
this.input.setRTL( dir === 'rtl' );
this.input.setDir( dir );
}, this );
};