mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 08:34:54 +00:00
412eb34de8
Math, hiero, language and alienextension are now each in their own module. Kept the experimental module for backwards compatibility, it just has all of its constituent modules as dependencies. MWExperimentalTool.js was split up, and ExperimentalTool.js was renamed to LanguageInspectorTool.js. Change-Id: I63b49dfbdb59dc9a494049553cc0c01e89e48826
28 lines
1 KiB
JavaScript
28 lines
1 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface language tool class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* UserInterface language tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.InspectorTool
|
|
* @constructor
|
|
* @param {ve.ui.SurfaceToolbar} toolbar
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.LanguageInspectorTool = function VeUiLanguageInspectorTool( toolbar, config ) {
|
|
ve.ui.InspectorTool.call( this, toolbar, config );
|
|
};
|
|
OO.inheritClass( ve.ui.LanguageInspectorTool, ve.ui.InspectorTool );
|
|
ve.ui.LanguageInspectorTool.static.name = 'language';
|
|
ve.ui.LanguageInspectorTool.static.group = 'meta';
|
|
ve.ui.LanguageInspectorTool.static.icon = 'language';
|
|
ve.ui.LanguageInspectorTool.static.titleMessage = 'visualeditor-annotationbutton-language-tooltip';
|
|
ve.ui.LanguageInspectorTool.static.inspector = 'language';
|
|
ve.ui.LanguageInspectorTool.static.modelClasses = [ ve.dm.LanguageAnnotation ];
|
|
ve.ui.toolFactory.register( ve.ui.LanguageInspectorTool );
|