mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
2c00c39393
Update DM node constructors for I81c60d4a in VE core. New changes: 2587549 [BREAKING CHANGE] Fix Node construction arguments Change-Id: I8d4f37b631fe85a78c72407937477963ac49f87a
36 lines
810 B
JavaScript
36 lines
810 B
JavaScript
/*!
|
|
* VisualEditor DataModel MWHeadingNode class.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel MediaWiki heading node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.HeadingNode
|
|
*
|
|
* @constructor
|
|
* @param {Object} [element] Reference to element in linear model
|
|
* @param {ve.dm.Node[]} [children]
|
|
*/
|
|
ve.dm.MWHeadingNode = function VeDmMWHeadingNode() {
|
|
// Parent constructor
|
|
ve.dm.HeadingNode.apply( this, arguments );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.dm.MWHeadingNode, ve.dm.HeadingNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.MWHeadingNode.static.name = 'mwHeading';
|
|
|
|
ve.dm.MWHeadingNode.static.suggestedParentNodeTypes = [ 'document' ];
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWHeadingNode );
|