mediawiki-extensions-Visual.../modules/ve-mw/ui/widgets/ve.ui.MWNoParametersResultWidget.js
James D. Forrester 2f8b3e0d96 build: Bump copyright notices to 2015
Change-Id: Ie92dab7411116d3410195c3fb0a3513c664c0c30
2015-01-12 20:34:19 -08:00

38 lines
983 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 this.$( '<div>' )
.addClass( 've-ui-mwNoParametersResultWidget-label' )
.text( ve.msg( 'visualeditor-parameter-search-no-unused' ) );
};