2014-01-06 09:07:24 +00:00
|
|
|
/*!
|
|
|
|
* 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';
|
2014-03-20 02:31:41 +00:00
|
|
|
ve.ui.MWMathInspectorTool.static.title = OO.ui.deferMsg(
|
|
|
|
'math-visualeditor-mwmathinspector-title' );
|
2014-01-06 09:07:24 +00:00
|
|
|
ve.ui.MWMathInspectorTool.static.modelClasses = [ ve.dm.MWMathNode ];
|
2014-04-09 22:51:10 +00:00
|
|
|
ve.ui.MWMathInspectorTool.static.commandName = 'math';
|
2014-01-06 09:07:24 +00:00
|
|
|
ve.ui.toolFactory.register( ve.ui.MWMathInspectorTool );
|
2014-04-09 22:51:10 +00:00
|
|
|
|
|
|
|
ve.ui.commandRegistry.register(
|
|
|
|
new ve.ui.Command( 'math', 'inspector', 'open', 'math' )
|
|
|
|
);
|