mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-14 19:26:08 +00:00
09b8a0830c
Change-Id: I1c6ffd18f97e6a0e95f9e8e88842743caf887fe8
52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
/*!
|
|
* VisualEditor UserInterface MWChemDialogTool class.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license MIT
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki UserInterface chem tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.FragmentWindowTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWChemDialogTool = function VeUiMWChemDialogTool( toolGroup, config ) {
|
|
ve.ui.MWChemDialogTool.super.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWChemDialogTool, ve.ui.FragmentWindowTool );
|
|
ve.ui.MWChemDialogTool.static.name = 'chem';
|
|
ve.ui.MWChemDialogTool.static.group = 'object';
|
|
ve.ui.MWChemDialogTool.static.icon = 'labFlask';
|
|
ve.ui.MWChemDialogTool.static.title = OO.ui.deferMsg(
|
|
'math-visualeditor-mwchemdialog-title' );
|
|
ve.ui.MWChemDialogTool.static.modelClasses = [ ve.dm.MWChemNode ];
|
|
ve.ui.MWChemDialogTool.static.commandName = 'chemDialog';
|
|
ve.ui.toolFactory.register( ve.ui.MWChemDialogTool );
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'chemDialog', 'window', 'open',
|
|
{ args: [ 'chemDialog' ], supportedSelections: [ 'linear' ] }
|
|
)
|
|
);
|
|
|
|
ve.ui.commandRegistry.register(
|
|
new ve.ui.Command(
|
|
'chemInspector', 'window', 'open',
|
|
{ args: [ 'chemInspector' ], supportedSelections: [ 'linear' ] }
|
|
)
|
|
);
|
|
|
|
ve.ui.sequenceRegistry.register(
|
|
new ve.ui.Sequence( 'wikitextChem', 'chemDialog', '<chem', 5 )
|
|
);
|
|
|
|
ve.ui.commandHelpRegistry.register( 'insert', 'chemDialog', {
|
|
sequences: [ 'wikitextChem' ],
|
|
label: OO.ui.deferMsg( 'math-visualeditor-mwchemdialog-title' )
|
|
} );
|