mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 22:22:54 +00:00
b9ba3c92a3
Bug: 47907 Change-Id: I794927a881082e0113c0ce8ee8f1d908b0960899
43 lines
975 B
JavaScript
43 lines
975 B
JavaScript
/*!
|
|
* VisualEditor DataModel DivNode class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel div node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.BranchNode
|
|
* @constructor
|
|
* @param {ve.dm.BranchNode[]} [children] Child nodes to attach
|
|
* @param {Object} [element] Reference to element in linear model
|
|
*/
|
|
ve.dm.DivNode = function VeDmDivNode( children, element ) {
|
|
// Parent constructor
|
|
ve.dm.BranchNode.call( this, children, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.DivNode, ve.dm.BranchNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.DivNode.static.name = 'div';
|
|
|
|
ve.dm.DivNode.static.matchTagNames = [ 'div' ];
|
|
|
|
ve.dm.DivNode.static.toDataElement = function () {
|
|
return { 'type': 'div' };
|
|
};
|
|
|
|
ve.dm.DivNode.static.toDomElements = function ( dataElement, doc ) {
|
|
return [ doc.createElement( 'div' ) ];
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.DivNode );
|