mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.ListItemNode.js
Catrope 6afed5e5cc Move ve2/ back to ve/
Change-Id: Ie51d8e48171fb1f84045d1560ee603cee62b91f6
2012-06-19 18:20:28 -07:00

56 lines
1.1 KiB
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 = {
'isWrapped': true,
'isContent': false,
'canContainContent': false,
'childNodeTypes': null,
'parentNodeTypes': ['list']
};
/**
* Node converters.
*
* @see {ve.dm.Converter}
* @static
* @member
*/
ve.dm.ListItemNode.converters = {
'domElementTypes': ['li'],
'toDomElement': function( type, element ) {
return document.createElement( 'li' );
},
'toDataElement': function( tag, element ) {
return { 'type': 'listItem' };
}
};
/* Registration */
ve.dm.nodeFactory.register( 'listItem', ve.dm.ListItemNode );
/* Inheritance */
ve.extendClass( ve.dm.ListItemNode, ve.dm.BranchNode );