mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
51f4b4be54
Change-Id: If7d0159e984d9ccb4d5c31effb62bb9612260fda
59 lines
1.2 KiB
JavaScript
59 lines
1.2 KiB
JavaScript
/*!
|
|
* VisualEditor ContentEditable TableCellNode class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* ContentEditable table cell node.
|
|
*
|
|
* @class
|
|
* @extends ve.ce.BranchNode
|
|
* @constructor
|
|
* @param {ve.dm.TableCellNode} model Model to observe
|
|
*/
|
|
ve.ce.TableCellNode = function VeCeTableCellNode( model ) {
|
|
// Parent constructor
|
|
ve.ce.BranchNode.call(
|
|
this, 'tableCell', model, ve.ce.BranchNode.getDomWrapper( model, 'style' )
|
|
);
|
|
|
|
// Events
|
|
this.model.addListenerMethod( this, 'update', 'onUpdate' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ce.TableCellNode, ve.ce.BranchNode );
|
|
|
|
/* Static Properties */
|
|
|
|
/**
|
|
* Mapping of list item style values and DOM wrapper element types.
|
|
*
|
|
* @static
|
|
* @property
|
|
*/
|
|
ve.ce.TableCellNode.domWrapperElementTypes = {
|
|
'data': 'td',
|
|
'header': 'th'
|
|
};
|
|
|
|
/* Methods */
|
|
|
|
/**
|
|
* Handle model update events.
|
|
*
|
|
* If the style changed since last update the DOM wrapper will be replaced with an appropriate one.
|
|
*
|
|
* @method
|
|
*/
|
|
ve.ce.TableCellNode.prototype.onUpdate = function () {
|
|
this.updateDomWrapper( 'style' );
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.ce.nodeFactory.register( 'tableCell', ve.ce.TableCellNode );
|