2013-10-21 22:30:49 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MediaWiki UserInterface math tool.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.InspectorTool
|
|
|
|
* @constructor
|
2013-10-23 23:27:12 +00:00
|
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
2013-10-21 22:30:49 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
|
|
|
*/
|
2013-10-23 23:27:12 +00:00
|
|
|
ve.ui.MWMathInspectorTool = function VeUiMWMathInspectorTool( toolGroup, config ) {
|
|
|
|
ve.ui.InspectorTool.call( this, toolGroup, config );
|
2013-10-21 22:30:49 +00:00
|
|
|
};
|
|
|
|
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.titleMessage = 'visualeditor-mwmathinspector-title';
|
|
|
|
ve.ui.MWMathInspectorTool.static.inspector = 'math';
|
|
|
|
ve.ui.MWMathInspectorTool.static.modelClasses = [ ve.dm.MWMathNode ];
|
|
|
|
ve.ui.toolFactory.register( ve.ui.MWMathInspectorTool );
|