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 53 54 55 56 57 58 59 60 | 1x 470x 1x 1x 1x 1x 1x 1x 61x 61x 1x 20x 20x 1x 6x 1x 8x 1x | /*! * VisualEditor DataModel DefinitionListItemNode class. * * @copyright See AUTHORS.txt */ /** * DataModel definition list item node. * * @class * @extends ve.dm.BranchNode * * @constructor * @param {Object} [element] Reference to element in linear model * @param {ve.dm.Node[]} [children] */ ve.dm.DefinitionListItemNode = function VeDmDefinitionListItemNode() { // Parent constructor ve.dm.DefinitionListItemNode.super.apply( this, arguments ); }; /* Inheritance */ OO.inheritClass( ve.dm.DefinitionListItemNode, ve.dm.BranchNode ); /* Static Properties */ ve.dm.DefinitionListItemNode.static.name = 'definitionListItem'; ve.dm.DefinitionListItemNode.static.parentNodeTypes = [ 'definitionList' ]; ve.dm.DefinitionListItemNode.static.defaultAttributes = { style: 'term' }; ve.dm.DefinitionListItemNode.static.matchTagNames = [ 'dt', 'dd' ]; ve.dm.DefinitionListItemNode.static.toDataElement = function ( domElements ) { const style = domElements[ 0 ].nodeName.toLowerCase() === 'dt' ? 'term' : 'definition'; return { type: this.name, attributes: { style: style } }; }; ve.dm.DefinitionListItemNode.static.toDomElements = function ( dataElement, doc ) { const tag = dataElement.attributes && dataElement.attributes.style === 'term' ? 'dt' : 'dd'; return [ doc.createElement( tag ) ]; }; // Nodes which are diffed as a list must have the same description logic as each other ve.dm.DefinitionListItemNode.static.describeChanges = function () { return ve.dm.ListNode.static.describeChanges.apply( this, arguments ); }; ve.dm.DefinitionListItemNode.static.describeChange = function () { return ve.dm.ListNode.static.describeChange.apply( this, arguments ); }; /* Registration */ ve.dm.modelRegistry.register( ve.dm.DefinitionListItemNode ); |