mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
255ce870e2
function() -> function () ){ -> ) { Change-Id: I20a85fcf79d7aec64f7f2559e84c0279550d4eea
41 lines
787 B
JavaScript
41 lines
787 B
JavaScript
/**
|
|
* VisualEditor content editable ListItemNode class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* ContentEditable node for a list item.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.ce.BranchNode}
|
|
* @param model {ve.dm.ListItemNode} Model to observe
|
|
*/
|
|
ve.ce.ListItemNode = function ( model ) {
|
|
// Inheritance
|
|
ve.ce.BranchNode.call( this, 'listItem', model, $( '<li></li>' ) );
|
|
};
|
|
|
|
/* Static Members */
|
|
|
|
/**
|
|
* Node rules.
|
|
*
|
|
* @see ve.ce.NodeFactory
|
|
* @static
|
|
* @member
|
|
*/
|
|
ve.ce.ListItemNode.rules = {
|
|
'canBeSplit': true
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.nodeFactory.register( 'listItem', ve.ce.ListItemNode );
|
|
|
|
/* Inheritance */
|
|
|
|
ve.extendClass( ve.ce.ListItemNode, ve.ce.BranchNode );
|