mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-18 09:10:59 +00:00
Merge "Replace x.slice(0,x.length-y) with x.slice(0,-y)"
This commit is contained in:
commit
e45d2e8137
|
@ -29,10 +29,14 @@ OO.inheritClass( ve.ui.MWPreTextInputWidget, ve.ui.WhitespacePreservingTextInput
|
||||||
*/
|
*/
|
||||||
ve.ui.MWPreTextInputWidget.prototype.setValueAndWhitespace = function ( value ) {
|
ve.ui.MWPreTextInputWidget.prototype.setValueAndWhitespace = function ( value ) {
|
||||||
this.whitespace[ 0 ] = value.match( /^\n?/ )[ 0 ];
|
this.whitespace[ 0 ] = value.match( /^\n?/ )[ 0 ];
|
||||||
value = value.slice( this.whitespace[ 0 ].length );
|
if ( this.whitespace[ 0 ] ) {
|
||||||
|
value = value.slice( this.whitespace[ 0 ].length );
|
||||||
|
}
|
||||||
|
|
||||||
this.whitespace[ 1 ] = value.match( /\n?$/ )[ 0 ];
|
this.whitespace[ 1 ] = value.match( /\n?$/ )[ 0 ];
|
||||||
value = value.slice( 0, value.length - this.whitespace[ 1 ].length );
|
if ( this.whitespace[ 1 ] ) {
|
||||||
|
value = value.slice( 0, -this.whitespace[ 1 ].length );
|
||||||
|
}
|
||||||
|
|
||||||
this.setValue( value );
|
this.setValue( value );
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue