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