mediawiki-extensions-Visual.../modules/es/views/es.ParagraphView.js
2011-11-16 18:54:05 +00:00

27 lines
515 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 );
// DOM Changes
this.$.addClass( 'es-paragraphView' );
};
/* Registration */
es.DocumentView.splitRules.paragraph = {
'self': true,
'children': null
};
/* Inheritance */
es.extendClass( es.ParagraphView, es.DocumentViewLeafNode );