mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.TableNode.js
Ed Sanders e6f48c5c93 'Config' -> 'Configuration' in all comments
Because the former isn't a real word.

Change-Id: Ie6ed15f9e390b357bbaa768b57f3c3fd7cf21181
2013-09-25 11:23:16 +01:00

38 lines
852 B
JavaScript

/*!
* VisualEditor ContentEditable TableNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable table node.
*
* @class
* @extends ve.ce.BranchNode
* @constructor
* @param {ve.dm.TableNode} model Model to observe
* @param {Object} [config] Configuration options
*/
ve.ce.TableNode = function VeCeTableNode( model, config ) {
// Parent constructor
ve.ce.BranchNode.call( this, model, config );
// Initialization
this.$.attr( { 'border': 1, 'cellpadding': 5, 'cellspacing': 5 } );
};
/* Inheritance */
ve.inheritClass( ve.ce.TableNode, ve.ce.BranchNode );
/* Static Properties */
ve.ce.TableNode.static.name = 'table';
ve.ce.TableNode.static.tagName = 'table';
/* Registration */
ve.ce.nodeFactory.register( ve.ce.TableNode );