mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.TableSectionNode.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

67 lines
1.5 KiB
JavaScript

/*!
* VisualEditor ContentEditable TableSectionNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable table section node.
*
* @class
* @extends ve.ce.BranchNode
* @constructor
* @param {ve.dm.TableSectionNode} model Model to observe
* @param {Object} [config] Configuration options
*/
ve.ce.TableSectionNode = function VeCeTableSectionNode( model, config ) {
// Parent constructor
ve.ce.BranchNode.call( this, model, config );
// Events
this.model.connect( this, { 'update': 'onUpdate' } );
};
/* Inheritance */
ve.inheritClass( ve.ce.TableSectionNode, ve.ce.BranchNode );
/* Static Properties */
ve.ce.TableSectionNode.static.name = 'tableSection';
/* Methods */
/**
* Get the HTML tag name.
*
* Tag name is selected based on the model's style attribute.
*
* @returns {string} HTML tag name
* @throws {Error} If style is invalid
*/
ve.ce.TableSectionNode.prototype.getTagName = function () {
var style = this.model.getAttribute( 'style' ),
types = { 'header': 'thead', 'body': 'tbody', 'footer': 'tfoot' };
if ( !( style in types ) ) {
throw new Error( 'Invalid style' );
}
return types[style];
};
/**
* Handle model update events.
*
* If the style changed since last update the DOM wrapper will be replaced with an appropriate one.
*
* @method
*/
ve.ce.TableSectionNode.prototype.onUpdate = function () {
this.updateTagName();
};
/* Registration */
ve.ce.nodeFactory.register( ve.ce.TableSectionNode );