Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 1x 2039x 2039x 1110x 1x 1x 1x 1x 2039x 2039x 1x | /*! * VisualEditor ContentEditable ParagraphNode class. * * @copyright See AUTHORS.txt */ /** * ContentEditable paragraph node. * * @class * @extends ve.ce.ContentBranchNode * @constructor * @param {ve.dm.ParagraphNode} model Model to observe * @param {Object} [config] Configuration options */ ve.ce.ParagraphNode = function VeCeParagraphNode() { // Parent constructor ve.ce.ParagraphNode.super.apply( this, arguments ); // DOM changes if ( this.model.getElement().internal && this.model.getElement().internal.generated === 'wrapper' ) { this.$element.addClass( 've-ce-generated-wrapper' ); } }; /* Inheritance */ OO.inheritClass( ve.ce.ParagraphNode, ve.ce.ContentBranchNode ); /* Static Properties */ ve.ce.ParagraphNode.static.name = 'paragraph'; ve.ce.ParagraphNode.static.tagName = 'p'; /* Methods */ /** * @inheritdoc */ ve.ce.ParagraphNode.prototype.initialize = function () { ve.ce.ParagraphNode.super.prototype.initialize.call( this ); this.$element.addClass( 've-ce-paragraphNode' ); }; /* Registration */ ve.ce.nodeFactory.register( ve.ce.ParagraphNode ); |