mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
35af704173
Change-Id: Ibdcb4502a8fdc5b1a6c22ae0e9c42c86b3a7d4dc
34 lines
717 B
JavaScript
34 lines
717 B
JavaScript
/**
|
|
* DataModel node for a list.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.dm.BranchNode}
|
|
* @param {ve.dm.BranchNode[]} [children] Child nodes to attach
|
|
* @param {Object} [attributes] Reference to map of attribute key/value pairs
|
|
*/
|
|
ve.dm.ListNode = function( children, attributes ) {
|
|
// Inheritance
|
|
ve.dm.BranchNode.call( this, 'list', children, attributes );
|
|
};
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* @see ve.dm.NodeFactory
|
|
*/
|
|
ve.dm.ListNode.rules = {
|
|
'canHaveChildren': true,
|
|
'canHaveGrandchildren': true,
|
|
'childNodeTypes': ['listItem'],
|
|
'parentNodeTypes': null
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.factory.register( 'list', ve.dm.ListNode );
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.dm.ListNode, ve.dm.BranchNode );
|