mediawiki-extensions-Visual.../modules/ve2/dm/nodes/ve.dm.ListItemNode.js
Catrope 93d6adb5f2 Add an isWrapped property and make getOuterLength use it
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
2012-05-07 12:00:07 -07:00

39 lines
803 B
JavaScript

/**
* DataModel node for a list item.
*
* @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.ListItemNode = function( children, attributes ) {
// Inheritance
ve.dm.BranchNode.call( this, 'listItem', children, attributes );
};
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.ListItemNode.rules = {
'canHaveChildren': true,
'canHaveGrandchildren': true,
'isWrapped': true,
'childNodeTypes': null,
'parentNodeTypes': ['list']
};
/* Registration */
ve.dm.factory.register( 'listItem', ve.dm.ListItemNode );
/* Inheritance */
ve.extendClass( ve.dm.ListItemNode, ve.dm.BranchNode );