mediawiki-extensions-Visual.../modules/ve2/dm/nodes/ve.dm.HeadingNode.js
Catrope 93d6adb5f2 Add an isWrapped property and make getOuterLength use it
This gets rid of the length == outerLength-2 hack in getDataFromNode()
and will make it easier to implement similar logic in selectNodes()

Change-Id: I1294350b67ca3eefde2b7fe9fea0bc6d8b90f772
2012-05-07 12:00:07 -07:00

39 lines
790 B
JavaScript

/**
* DataModel node for a heading.
*
* @class
* @constructor
* @extends {ve.dm.BranchNode}
* @param {ve.dm.LeafNode[]} [children] Child nodes to attach
* @param {Object} [attributes] Reference to map of attribute key/value pairs
*/
ve.dm.HeadingNode = function( children, attributes ) {
// Inheritance
ve.dm.BranchNode.call( this, 'heading', children, attributes );
};
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.HeadingNode.rules = {
'canHaveChildren': true,
'canHaveGrandchildren': false,
'isWrapped': true,
'childNodeTypes': null,
'parentNodeTypes': null
};
/* Registration */
ve.dm.factory.register( 'heading', ve.dm.HeadingNode );
/* Inheritance */
ve.extendClass( ve.dm.HeadingNode, ve.dm.BranchNode );