mediawiki-extensions-Visual.../modules/ve-mw/ui/inspectors/ve.ui.MWLanguageInspector.js
James D. Forrester 95dee3ceee Fix copyright year range for fourteen files not updated to 2011-2014
Change-Id: Ibef2bf965dbd970b235a57058bcb3922a8777aa2
2014-03-24 18:36:51 -07:00

34 lines
821 B
JavaScript

/*!
* VisualEditor UserInterface LanguageInspector class.
*
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* MWLanguage inspector.
*
* @class
* @extends ve.ui.LanguageInspector
*
* @constructor
* @param {ve.ui.Surface} surface
* @param {Object} [config] Configuration options
*/
ve.ui.MWLanguageInspector = function VeUiMWLanguageInspector( surface, config ) {
// Parent constructor
ve.ui.LanguageInspector.call( this, surface, config );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWLanguageInspector, ve.ui.LanguageInspector );
/* Static Properties */
ve.ui.MWLanguageInspector.static.languageInputWidget = ve.ui.MWLanguageInputWidget;
/* Registration */
ve.ui.inspectorFactory.register( ve.ui.MWLanguageInspector );