mediawiki-extensions-Visual.../modules/ve-mw/ui/widgets/ve.ui.MWParameterCheckboxInputWidget.js
Ed Sanders 09d60e784b Fix remaining uses of 'parent'->'super'
Bug: T120821
Change-Id: Id6ccb82d6d6027265d1595dbf11c1c4abeabc392
2023-11-02 16:42:31 +00:00

40 lines
947 B
JavaScript

/*!
* VisualEditor UserInterface MWParameterCheckboxInputWidget class.
*
* @copyright 2011-2020 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Checkbox input for a parameter value which can only contain boolean values.
*
* @class
* @extends OO.ui.CheckboxInputWidget
*
* @constructor
*/
ve.ui.MWParameterCheckboxInputWidget = function VeUiMWParameterCheckboxInputWidget() {
// Parent constructor
ve.ui.MWParameterCheckboxInputWidget.super.apply( this, arguments );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWParameterCheckboxInputWidget, OO.ui.CheckboxInputWidget );
/* Methods */
/**
* @inheritdoc
*/
ve.ui.MWParameterCheckboxInputWidget.prototype.getValue = function () {
return this.isSelected() ? '1' : '0';
};
/**
* @inheritdoc
*/
ve.ui.MWParameterCheckboxInputWidget.prototype.setValue = function ( value ) {
return this.setSelected( value === '1' );
};