mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
31 lines
684 B
JavaScript
31 lines
684 B
JavaScript
|
/**
|
||
|
* Data model 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 */
|
||
|
|
||
|
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 );
|