mediawiki-extensions-Visual.../modules/ve-mw/dm/nodes/ve.dm.MWHeadingNode.js
Ed Sanders 26f567d84f Allow headings in table cells
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
2014-11-05 22:34:13 +00:00

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 );