mediawiki-extensions-Visual.../modules/ve-mw/ce/nodes/ve.ce.MWTransclusionTableCellNode.js
Bartosz Dziewoński 4c93b27c7d Update VE core submodule to master (65e536c1c)
New changes:
3135ad109 Update OOUI to v0.50.0
0eb93c340 Localisation updates from https://translatewiki.net.
2e23d8cac ve.ui.Surface: Improve documentation of surface padding
d42086d50 Allow TableCellableNode to span multiple DOM elements
65e536c1c Localisation updates from https://translatewiki.net.

Local changes:
* Allow MWTransclusionTableCellNode to span multiple DOM elements

Bug: T366984
Bug: T367061
Change-Id: I67239ac72f29b9729b73c7604ee3680ceb1b8475
2024-06-17 20:06:18 +02:00

47 lines
1.2 KiB
JavaScript

/*!
* VisualEditor ContentEditable MWTransclusionTableCellNode class.
*
* @copyright See AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable MediaWiki transclusion table cell node.
*
* @class
* @extends ve.ce.MWTransclusionNode
* @constructor
* @mixes ve.ce.TableCellableNode
* @param {ve.dm.MWTransclusionTableCellNode} model Model to observe
*/
ve.ce.MWTransclusionTableCellNode = function VeCeMWTransclusionTableCellNode( model ) {
// Parent constructor
ve.ce.MWTransclusionTableCellNode.super.call( this, model );
// Mixin constructors
ve.ce.TableCellableNode.call( this );
};
/* Inheritance */
OO.inheritClass( ve.ce.MWTransclusionTableCellNode, ve.ce.MWTransclusionNode );
OO.mixinClass( ve.ce.MWTransclusionTableCellNode, ve.ce.TableCellableNode );
/* Static Properties */
ve.ce.MWTransclusionTableCellNode.static.name = 'mwTransclusionTableCell';
/* Methods */
ve.ce.MWTransclusionTableCellNode.prototype.getTagName = function () {
// mwTransclusionTableCells have no style attribute. Give them a table
// cell to start with, although it will get overwritten with
// originalDomElements.
return 'td';
};
/* Registration */
ve.ce.nodeFactory.register( ve.ce.MWTransclusionTableCellNode );