mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
d42a0772bb
Avoids having to update the date in every file every year, which we stopped doing. Change-Id: I7bf7aa0937eef911e00772470091753a7b06fd3d
39 lines
976 B
JavaScript
39 lines
976 B
JavaScript
/*!
|
|
* VisualEditor UserInterface MWPreTextInputWidget class.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
*/
|
|
|
|
/**
|
|
* Text input widget which hides but preserves a single leading and trailing newline.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.WhitespacePreservingTextInputWidget
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWPreTextInputWidget = function VeUiMWPreTextInputWidget( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWPreTextInputWidget.super.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWPreTextInputWidget, ve.ui.WhitespacePreservingTextInputWidget );
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
ve.ui.MWPreTextInputWidget.prototype.setValueAndWhitespace = function ( value ) {
|
|
this.whitespace[ 0 ] = value.match( /^\n?/ )[ 0 ];
|
|
value = value.slice( this.whitespace[ 0 ].length );
|
|
|
|
this.whitespace[ 1 ] = value.match( /\n?$/ )[ 0 ];
|
|
value = value.slice( 0, value.length - this.whitespace[ 1 ].length );
|
|
|
|
this.setValue( value );
|
|
};
|