mediawiki-extensions-Visual.../modules/ve-mw/ui/widgets/ve.ui.MWNoParametersResultWidget.js
James D. Forrester 2c77e88d2c doc: Bump copyright year for 2020
Change-Id: I30539877543dc2a57bd1428a00d10ac46d8fc294
2020-01-08 09:13:24 -08:00

42 lines
1 KiB
JavaScript

/*!
* VisualEditor UserInterface MWNoParametersResultWidget class.
*
* @copyright 2011-2020 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Creates an ve.ui.MWNoParametersResultWidget object.
*
* @class
* @extends OO.ui.OptionWidget
*
* @constructor
* @param {Object} [config] Configuration options
*/
ve.ui.MWNoParametersResultWidget = function VeUiMWNoParametersResultWidget( config ) {
// Parent constructor
ve.ui.MWNoParametersResultWidget.super.call( this, config );
// Initialization
this.$element.addClass( 've-ui-mwNoParametersResultWidget' );
this.setLabel( this.buildLabel() );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWNoParametersResultWidget, OO.ui.OptionWidget );
/* Methods */
/**
* Build the label element
*
* @return {jQuery}
*/
ve.ui.MWNoParametersResultWidget.prototype.buildLabel = function () {
return $( '<div>' )
.addClass( 've-ui-mwNoParametersResultWidget-label' )
.text( ve.msg( 'visualeditor-parameter-search-no-unused' ) );
};