mediawiki-extensions-Visual.../modules/ve2/dm/nodes/ve.dm.HeadingNode.js
Trevor Parscal e0de881a8a Removed trailing whitespace in multi-line comment blocks
JSHint and various git tools complain about this, so let's just do away with them altogether

Change-Id: I731866bd21f1ee0088fb0a71df3abf92692aca23
2012-05-14 15:05:09 -07:00

39 lines
788 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 );