mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
1d94af144a
* Also renamed convertDomElement to replaceDomWrapper in ve.ce.BranchNode * Also added extra documentation for node rules Change-Id: Ia8ac6be34e2b021be96974ac1ba9119bd8077d60
38 lines
770 B
JavaScript
38 lines
770 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,
|
|
'childNodeTypes': null,
|
|
'parentNodeTypes': null
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.factory.register( 'heading', ve.dm.HeadingNode );
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.dm.HeadingNode, ve.dm.BranchNode );
|