mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
c131018ad1
Replacing outdated 'chem' and 'math*' icons with standardized OOUI icons from 'editing-advanced' pack. Bug: T195480 Change-Id: Iefc02ca5c2f0c310fdc83fe26a17f7fcba5195b8
52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWMathDialogTool class.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license MIT
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki UserInterface math tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.FragmentWindowTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWMathDialogTool = function VeUiMWMathDialogTool( toolGroup, config ) {
|
|
ve.ui.MWMathDialogTool.super.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWMathDialogTool, ve.ui.FragmentWindowTool );
|
|
ve.ui.MWMathDialogTool.static.name = 'math';
|
|
ve.ui.MWMathDialogTool.static.group = 'object';
|
|
ve.ui.MWMathDialogTool.static.icon = 'mathematics';
|
|
ve.ui.MWMathDialogTool.static.title = OO.ui.deferMsg(
|
|
'math-visualeditor-mwmathdialog-title' );
|
|
ve.ui.MWMathDialogTool.static.modelClasses = [ ve.dm.MWMathNode ];
|
|
ve.ui.MWMathDialogTool.static.commandName = 'mathDialog';
|
|
ve.ui.toolFactory.register( ve.ui.MWMathDialogTool );
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'mathDialog', 'window', 'open',
|
|
{ args: [ 'mathDialog' ], supportedSelections: [ 'linear' ] }
|
|
)
|
|
);
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'mathInspector', 'window', 'open',
|
|
{ args: [ 'mathInspector' ], supportedSelections: [ 'linear' ] }
|
|
)
|
|
);
|
|
|
|
ve.ui.sequenceRegistry.register(
|
|
new ve.ui.Sequence( 'wikitextMath', 'mathDialog', '<math', 5 )
|
|
);
|
|
|
|
ve.ui.commandHelpRegistry.register( 'insert', 'mathDialog', {
|
|
sequences: [ 'wikitextMath' ],
|
|
label: OO.ui.deferMsg( 'math-visualeditor-mwmathdialog-title' )
|
|
} );
|