mediawiki-extensions-Math/modules/ve-math/ve.dm.MWChemNode.js
Amire80 848d762e24 Add support for chemical formulae in VisualEditor
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
2017-02-19 18:36:26 +00:00

42 lines
860 B
JavaScript

/*!
* VisualEditor DataModel MWChemNode class.
*
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel MediaWiki chem node.
*
* @class
* @extends ve.dm.MWLatexNode
*
* @constructor
* @param {Object} [element]
*/
ve.dm.MWChemNode = function VeDmMWChemNode() {
// Parent constructor
ve.dm.MWChemNode.super.apply( this, arguments );
};
/* Inheritance */
OO.inheritClass( ve.dm.MWChemNode, ve.dm.MWLatexNode );
/* Static members */
ve.dm.MWChemNode.static.name = 'mwChem';
ve.dm.MWChemNode.static.extensionName = 'chem';
ve.dm.MWChemNode.static.getMatchRdfaTypes = function () {
return [
'mw:Extension/chem',
'mw:Extension/ce' // Deprecated, kept for backwards compatibility
];
};
/* Registration */
ve.dm.modelRegistry.register( ve.dm.MWChemNode );