mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.TableCellNode.js
Trevor Parscal 255ce870e2 Puttin' em white-spacers where they aught'a be
function() -> function ()
){ -> ) {

Change-Id: I20a85fcf79d7aec64f7f2559e84c0279550d4eea
2012-08-06 18:52:19 -07:00

70 lines
1.3 KiB
JavaScript

/**
* VisualEditor content editable TableCellNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable node for a table cell.
*
* @class
* @constructor
* @extends {ve.ce.BranchNode}
* @param model {ve.dm.TableCellNode} Model to observe
*/
ve.ce.TableCellNode = function ( model ) {
// Inheritance
ve.ce.BranchNode.call(
this, 'tableCell', model, ve.ce.BranchNode.getDomWrapper( model, 'style' )
);
// Events
this.model.addListenerMethod( this, 'update', 'onUpdate' );
};
/* Static Members */
/**
* Node rules.
*
* @see ve.ce.NodeFactory
* @static
* @member
*/
ve.ce.TableCellNode.rules = {
'canBeSplit': false
};
/**
* Mapping of list item style values and DOM wrapper element types.
*
* @static
* @member
*/
ve.ce.TableCellNode.domWrapperElementTypes = {
'data': 'td',
'header': 'th'
};
/* Methods */
/**
* Responds to 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 );
/* Inheritance */
ve.extendClass( ve.ce.TableCellNode, ve.ce.BranchNode );