mediawiki-extensions-Visual.../modules/ve2/ce/nodes/ve.ce.ParagraphNode.js
Trevor Parscal e0de881a8a Removed trailing whitespace in multi-line comment blocks
JSHint and various git tools complain about this, so let's just do away with them altogether

Change-Id: I731866bd21f1ee0088fb0a71df3abf92692aca23
2012-05-14 15:05:09 -07:00

34 lines
601 B
JavaScript

/**
* ContentEditable node for a paragraph.
*
* @class
* @constructor
* @extends {ve.ce.BranchNode}
* @param model {ve.dm.ParagraphNode} Model to observe
*/
ve.ce.ParagraphNode = function( model ) {
// Inheritance
ve.ce.BranchNode.call( this, 'paragraph', model, $( '<p></p>' ) );
};
/* Static Members */
/**
* Node rules.
*
* @see ve.ce.NodeFactory
* @static
* @member
*/
ve.ce.ParagraphNode.rules = {
'canBeSplit': true
};
/* Registration */
ve.ce.factory.register( 'paragraph', ve.ce.ParagraphNode );
/* Inheritance */
ve.extendClass( ve.ce.ParagraphNode, ve.ce.BranchNode );