mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
801888d34b
Note there is not even a LICENSE.txt in this code base. Change-Id: I3dccd4187f4a20e3f040c812c5811298794d469a
42 lines
825 B
JavaScript
42 lines
825 B
JavaScript
/*!
|
|
* VisualEditor DataModel MWChemNode class.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; 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 );
|