mediawiki-extensions-Visual.../modules/ve2/ce/nodes/ve.ce.TableNode.js
Trevor Parscal 370070dfa2 Lots of ce porting, got text nodes fully supported
* Fixed constructor of ve.ce.BranchNode which was calling the wrong method to perform an onSplice and with the wrong arguments
* Removed/renamed events emitted from ve.ce.BranchNode.onSplice
* Reintroduced .$ to all ce nodes
* Ported over functionality for DOM node type variance used in headings, lists and list items
* Moved the old ve.ce.Content guts to ve.ce.TextNode
* Added getOffsetFromNode and getDataFromNode to ve.dm.DocumentFragment
* Added setDocument and getDocument to dm nodes

Change-Id: I185423ba2f1a858dde562cb2f5bc3852aec930db
2012-04-30 19:38:42 -07:00

32 lines
587 B
JavaScript

/**
* ContentEditable node for a table.
*
* @class
* @constructor
* @extends {ve.ce.BranchNode}
* @param model {ve.dm.TableNode} Model to observe
*/
ve.ce.TableNode = function( model ) {
// Inheritance
ve.ce.BranchNode.call( this, model, $( '<table></table>' ) );
};
/* Static Members */
/**
* @see ve.ce.NodeFactory
*/
ve.ce.TableNode.rules = {
'canHaveChildren': true,
'canHaveGrandchildren': true,
'canBeSplit': false
};
/* Registration */
ve.ce.factory.register( 'table', ve.ce.TableNode );
/* Inheritance */
ve.extendClass( ve.ce.TableNode, ve.ce.BranchNode );