mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-01 17:36:35 +00:00
35af704173
Change-Id: Ibdcb4502a8fdc5b1a6c22ae0e9c42c86b3a7d4dc
34 lines
742 B
JavaScript
34 lines
742 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 */
|
|
|
|
/**
|
|
* @see ve.dm.NodeFactory
|
|
*/
|
|
ve.dm.ListItemNode.rules = {
|
|
'canHaveChildren': true,
|
|
'canHaveGrandchildren': true,
|
|
'childNodeTypes': null,
|
|
'parentNodeTypes': ['list']
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.factory.register( 'listItem', ve.dm.ListItemNode );
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.dm.ListItemNode, ve.dm.BranchNode );
|