mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
93d6adb5f2
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
39 lines
778 B
JavaScript
39 lines
778 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 */
|
|
|
|
/**
|
|
* Node rules.
|
|
*
|
|
* @see ve.dm.NodeFactory
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.dm.ListNode.rules = {
|
|
'canHaveChildren': true,
|
|
'canHaveGrandchildren': true,
|
|
'isWrapped': true,
|
|
'childNodeTypes': ['listItem'],
|
|
'parentNodeTypes': null
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.factory.register( 'list', ve.dm.ListNode );
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.dm.ListNode, ve.dm.BranchNode );
|