mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 14:56:20 +00:00
ba455643fc
Update dialogs and inspectors for breaking change in VE core New changes: a553012 [BREAKING CHANGE] Merge dialog and inspector actions into window actions f9a0419 Localisation updates from https://translatewiki.net. cbe81a0 Fix path to spinner in ve.ui.SpecialCharacterInspector.css Change-Id: Icf90ace6442364283b66b234e3c78fc65212f070
33 lines
766 B
JavaScript
33 lines
766 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 {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWLanguageInspector = function VeUiMWLanguageInspector( config ) {
|
|
// Parent constructor
|
|
ve.ui.LanguageInspector.call( this, config );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWLanguageInspector, ve.ui.LanguageInspector );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.MWLanguageInspector.static.languageInputWidget = ve.ui.MWLanguageInputWidget;
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWLanguageInspector );
|