mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
122f49b2dd
Change-Id: I3c20809e71cc0da58123e1b5f29c4f3aac945496
38 lines
998 B
JavaScript
38 lines
998 B
JavaScript
/*!
|
|
* VisualEditor UserInterface MWNoParametersResultWidget class.
|
|
*
|
|
* @copyright 2011-2017 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 */
|
|
|
|
/** */
|
|
ve.ui.MWNoParametersResultWidget.prototype.buildLabel = function () {
|
|
return $( '<div>' )
|
|
.addClass( 've-ui-mwNoParametersResultWidget-label' )
|
|
.text( ve.msg( 'visualeditor-parameter-search-no-unused' ) );
|
|
};
|