mediawiki-extensions-Visual.../contentEditable/views/es.ParagraphView.js
2012-02-01 22:56:15 +00:00

27 lines
527 B
JavaScript

/**
* Creates an es.ParagraphView object.
*
* @class
* @constructor
* @extends {es.DocumentViewLeafNode}
* @param {es.ParagraphModel} model Paragraph model to view
*/
es.ParagraphView = function( model ) {
// Inheritance
es.DocumentViewLeafNode.call( this, model, $( '<p>' ) );
// DOM Changes
this.$.addClass( 'es-paragraphView' );
};
/* Registration */
es.DocumentView.splitRules.paragraph = {
'self': true,
'children': null
};
/* Inheritance */
es.extendClass( es.ParagraphView, es.DocumentViewLeafNode );