mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 22:22:54 +00:00
316fdab450
It's been passed in for a while, but nothing ever used it. As we know some browsers don't like it when we create elements in the wrong document, and this ensures we always use the correct document for createElement(). Change-Id: Ia3d2fabe0516956105ad2b5625ed2f76c015c26e
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel DefinitionListItemNode class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel definition list item 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.DefinitionListItemNode = function VeDmDefinitionListItemNode( children, element ) {
|
|
// Parent constructor
|
|
ve.dm.BranchNode.call( this, children, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.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 ) {
|
|
var style = domElements[0].nodeName.toLowerCase() === 'dt' ? 'term' : 'definition';
|
|
return { 'type': 'definitionListItem', 'attributes': { 'style': style } };
|
|
};
|
|
|
|
ve.dm.DefinitionListItemNode.static.toDomElements = function ( dataElement, doc ) {
|
|
var tag = dataElement.attributes && dataElement.attributes.style === 'term' ? 'dt' : 'dd';
|
|
return [ doc.createElement( tag ) ];
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.DefinitionListItemNode );
|