mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
95bffa22a0
Has been a backwards-compatibility alias since OOjs UI 0.7.0. Change-Id: I17d7c03e9d1b9fa991d88444d22abfd403269ee0
38 lines
978 B
JavaScript
38 lines
978 B
JavaScript
/*!
|
|
* VisualEditor UserInterface MWNoParametersResultWidget class.
|
|
*
|
|
* @copyright 2011-2015 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
|
|
OO.ui.OptionWidget.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' ) );
|
|
};
|