mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-14 19:26:08 +00:00
8aedf53e00
Change-Id: I37b42640123f861eff8ae23b289c3714bee308a4
42 lines
785 B
JavaScript
42 lines
785 B
JavaScript
/*!
|
|
* VisualEditor DataModel MWChemNode class.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license MIT
|
|
*/
|
|
|
|
/**
|
|
* 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 );
|