mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
26f567d84f
We possibly want to discourage this somehow but our current functionality achieves this by doing an isolateAndUnwrap which for a table is catastrophic. Bug: 72990 Change-Id: I79f1348da20385dfec014afcac0fb5464580cf2f
36 lines
823 B
JavaScript
36 lines
823 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', 'tableCell' ];
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWHeadingNode );
|