mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.TableSectionNode.js
James D. Forrester 82114467f1 Bump copyright notice year range to -2013 over -2012
199 files touched. Whee!

Change-Id: Id82ce4a32f833406db4a1cc585674f2bdb39ba0d
2013-02-19 15:37:34 -08:00

60 lines
1.3 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
*/
ve.ce.TableSectionNode = function VeCeTableSectionNode( model ) {
// Parent constructor
ve.ce.BranchNode.call(
this, 'tableSection', model, ve.ce.BranchNode.getDomWrapper( model, 'style' )
);
// Events
this.model.addListenerMethod( this, 'update', 'onUpdate' );
};
/* Inheritance */
ve.inheritClass( ve.ce.TableSectionNode, ve.ce.BranchNode );
/* Static Properties */
/**
* Mapping of list item style values and DOM wrapper element types.
*
* @static
* @property
*/
ve.ce.TableSectionNode.domWrapperElementTypes = {
'header': 'thead',
'body': 'tbody',
'footer': 'tfoot'
};
/* 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.TableSectionNode.prototype.onUpdate = function () {
this.updateDomWrapper( 'style' );
};
/* Registration */
ve.ce.nodeFactory.register( 'tableSection', ve.ce.TableSectionNode );