mediawiki-extensions-Visual.../modules/ve-mw/ui/widgets/ve.ui.MWNoParametersResultWidget.js
Thiemo Kreuz f68c1e3794 Add @private tags to template dialog related methods
… obviously only to methods that are meant to be private, i.e.
only called from within the class (and possibly tests).

Change-Id: I581558078dc7210abac5f5724f71316ac45745e6
2021-09-26 11:51:36 +02:00

43 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
*
* @private
* @return {jQuery}
*/
ve.ui.MWNoParametersResultWidget.prototype.buildLabel = function () {
return $( '<div>' )
.addClass( 've-ui-mwNoParametersResultWidget-label' )
.text( ve.msg( 'visualeditor-parameter-search-no-unused' ) );
};