mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-02 03:06:51 +00:00
e7be4f5ba7
* Update MWMathInspectorTool for deferMsg refactor * Update ce.MWMathNode to add primaryCommandName Change-Id: I344e3ef498c504d07b1f42954ab44b82ed3c0a50
31 lines
1 KiB
JavaScript
31 lines
1 KiB
JavaScript
/*!
|
|
* VisualEditor MediaWiki UserInterface math tool class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/*global ve, OO */
|
|
|
|
/**
|
|
* MediaWiki UserInterface math tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.InspectorTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWMathInspectorTool = function VeUiMWMathInspectorTool( toolGroup, config ) {
|
|
ve.ui.InspectorTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWMathInspectorTool, ve.ui.InspectorTool );
|
|
ve.ui.MWMathInspectorTool.static.name = 'math';
|
|
ve.ui.MWMathInspectorTool.static.group = 'object';
|
|
ve.ui.MWMathInspectorTool.static.icon = 'math';
|
|
ve.ui.MWMathInspectorTool.static.title = OO.ui.deferMsg(
|
|
'math-visualeditor-mwmathinspector-title' );
|
|
ve.ui.MWMathInspectorTool.static.inspector = 'math';
|
|
ve.ui.MWMathInspectorTool.static.modelClasses = [ ve.dm.MWMathNode ];
|
|
ve.ui.toolFactory.register( ve.ui.MWMathInspectorTool );
|