mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
37 lines
762 B
JavaScript
37 lines
762 B
JavaScript
|
/*!
|
||
|
* VisualEditor InternalListNode class.
|
||
|
*
|
||
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* ContentEditable internal list node.
|
||
|
*
|
||
|
* @class
|
||
|
* @extends ve.ce.BranchNode
|
||
|
* @constructor
|
||
|
* @param {ve.dm.InternalListNode} model Model to observe
|
||
|
*/
|
||
|
ve.ce.InternalListNode = function VeCeInternalListNode( model ) {
|
||
|
// Parent constructor
|
||
|
ve.ce.BranchNode.call(
|
||
|
this, model, $( '<span>' )
|
||
|
);
|
||
|
|
||
|
// TODO: render nothing
|
||
|
this.$.hide();
|
||
|
};
|
||
|
|
||
|
/* Inheritance */
|
||
|
|
||
|
ve.inheritClass( ve.ce.InternalListNode, ve.ce.BranchNode );
|
||
|
|
||
|
/* Static Properties */
|
||
|
|
||
|
ve.ce.InternalListNode.static.name = 'internalList';
|
||
|
|
||
|
/* Registration */
|
||
|
|
||
|
ve.ce.nodeFactory.register( ve.ce.InternalListNode );
|