mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 14:56:20 +00:00
51f4b4be54
Change-Id: If7d0159e984d9ccb4d5c31effb62bb9612260fda
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel DefinitionListNode class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel definition list 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.DefinitionListNode = function VeDmDefinitionListNode( children, element ) {
|
|
// Parent constructor
|
|
ve.dm.BranchNode.call( this, 'definitionList', children, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.DefinitionListNode, ve.dm.BranchNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.DefinitionListNode.static.name = 'definitionList';
|
|
|
|
ve.dm.DefinitionListNode.static.childNodeTypes = [ 'definitionListItem' ];
|
|
|
|
ve.dm.DefinitionListNode.static.matchTagNames = [ 'dl' ];
|
|
|
|
ve.dm.DefinitionListNode.static.toDataElement = function () {
|
|
return { 'type': 'definitionList' };
|
|
};
|
|
|
|
ve.dm.DefinitionListNode.static.toDomElement = function () {
|
|
return document.createElement( 'dl' );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.nodeFactory.register( 'definitionList', ve.dm.DefinitionListNode );
|