mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
efafed3231
Change-Id: I8df9226a358a76b661eab6e967ff0d63d361f691
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel TableRowNode class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel table row 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.TableRowNode = function VeDmTableRowNode( children, element ) {
|
|
// Parent constructor
|
|
ve.dm.BranchNode.call( this, children, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.dm.TableRowNode, ve.dm.BranchNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.TableRowNode.static.name = 'tableRow';
|
|
|
|
ve.dm.TableRowNode.static.childNodeTypes = [ 'tableCell' ];
|
|
|
|
ve.dm.TableRowNode.static.parentNodeTypes = [ 'tableSection' ];
|
|
|
|
ve.dm.TableRowNode.static.matchTagNames = [ 'tr' ];
|
|
|
|
ve.dm.TableRowNode.static.toDataElement = function () {
|
|
return { 'type': 'tableRow' };
|
|
};
|
|
|
|
ve.dm.TableRowNode.static.toDomElements = function ( dataElement, doc ) {
|
|
return [ doc.createElement( 'tr' ) ];
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.TableRowNode );
|