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 9x 1x 1x 1x 1x 1x 1x 6x 1x 9x 9x 1x 9x 1x 9x 1x | /*!
* VisualEditor DataModel SectionNode class.
*
* @copyright See AUTHORS.txt
*/
/**
* DataModel section node.
*
* @class
* @extends ve.dm.BranchNode
*
* @constructor
* @param {Object} [element] Reference to element in linear model
* @param {ve.dm.Node[]} [children]
*/
ve.dm.SectionNode = function VeDmSectionNode() {
// Parent constructor
ve.dm.SectionNode.super.apply( this, arguments );
};
/* Inheritance */
OO.inheritClass( ve.dm.SectionNode, ve.dm.BranchNode );
/* Static Properties */
ve.dm.SectionNode.static.name = 'section';
ve.dm.SectionNode.static.isUnwrappable = false;
ve.dm.SectionNode.static.defaultAttributes = {
style: 'section'
};
ve.dm.SectionNode.static.matchTagNames = [ 'header', 'section', 'footer' ];
ve.dm.SectionNode.static.toDataElement = function ( domElements ) {
return { type: this.name, attributes: { style: domElements[ 0 ].nodeName.toLowerCase() } };
};
ve.dm.SectionNode.static.toDomElements = function ( dataElement, doc ) {
const style = dataElement.attributes && dataElement.attributes.style || 'section';
return [ doc.createElement( style ) ];
};
/* Methods */
ve.dm.SectionNode.prototype.canHaveSlugBefore = function () {
return false;
};
ve.dm.SectionNode.prototype.canHaveSlugAfter = function () {
return false;
};
/* Registration */
ve.dm.modelRegistry.register( ve.dm.SectionNode );
|