mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 16:44:51 +00:00
3cd0448b33
List items weren't being properly split because of a typo in this file. Change-Id: Ib275d62156b775bad57624dfdf4b54eb9a925eaa
32 lines
719 B
JavaScript
32 lines
719 B
JavaScript
/*!
|
|
* VisualEditor ContentEditable ListItemNode class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* ContentEditable list item node.
|
|
*
|
|
* @class
|
|
* @extends ve.ce.BranchNode
|
|
* @constructor
|
|
* @param {ve.dm.ListItemNode} model Model to observe
|
|
*/
|
|
ve.ce.ListItemNode = function VeCeListItemNode( model ) {
|
|
// Parent constructor
|
|
ve.ce.BranchNode.call( this, 'listItem', model, $( '<li>' ) );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ce.ListItemNode, ve.ce.BranchNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ce.ListItemNode.static.canBeSplit = true;
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.nodeFactory.register( 'listItem', ve.ce.ListItemNode );
|