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 | 1x 50x 1x 1x 1x 1x | /*! * VisualEditor DataModel RealCommentNode class. * * @copyright See AUTHORS.txt */ /** * @class * @extends ve.dm.CommentNode * * @constructor * @param {Object} element Reference to element in meta-linmod */ ve.dm.RealCommentNode = function VeDmRealCommentNode() { ve.dm.RealCommentNode.super.apply( this, arguments ); }; /* Inheritance */ OO.inheritClass( ve.dm.RealCommentNode, ve.dm.CommentNode ); /* Static Properties */ ve.dm.RealCommentNode.static.name = 'comment'; ve.dm.RealCommentNode.static.matchTagNames = [ '#comment' ]; /* Registration */ ve.dm.modelRegistry.register( ve.dm.RealCommentNode ); |