mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 03:34:10 +00:00
848d762e24
The chemical and mathematical formula inspectors and dialogs have a lot of similar functionality, and the common parts are now moved to the common MWLatex class. MWMath* classes now inherit from MWLatex*, and so do the new MWChem* classes. Bug: T153365 Change-Id: I4452ceca55197fda5f1e1293a5741c6f5fb7c245
43 lines
1,015 B
JavaScript
43 lines
1,015 B
JavaScript
/*!
|
|
* VisualEditor user interface MWChemDialog class.
|
|
*
|
|
* @copyright 2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Dialog for inserting and editing chem formulas.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.MWExtensionPreviewDialog
|
|
*
|
|
* @constructor
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
|
|
ve.ui.MWChemDialog = function VeUiMWChemDialog( config ) {
|
|
// Parent constructor
|
|
ve.ui.MWChemDialog.super.call( this, config );
|
|
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.ui.MWChemDialog, ve.ui.MWLatexDialog );
|
|
|
|
/* Static properties */
|
|
|
|
ve.ui.MWChemDialog.static.name = 'chemDialog';
|
|
|
|
ve.ui.MWChemDialog.static.title = OO.ui.deferMsg( 'math-visualeditor-mwchemdialog-title' );
|
|
|
|
ve.ui.MWChemDialog.static.modelClasses = [ ve.dm.MWChemNode ];
|
|
|
|
ve.ui.MWChemDialog.static.symbolsModule = 'ext.math.visualEditor.chemSymbols';
|
|
|
|
ve.ui.MWChemDialog.static.autocompleteWordList = [];
|
|
|
|
/* Registration */
|
|
|
|
ve.ui.windowFactory.register( ve.ui.MWChemDialog );
|