mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.CenterNode.js
Catrope 49963c75fd Store the data model element in the DM tree
This is cleaner than passing around the attributes separately, and it
allows us to access the annotations in dm.LeafNode as well.

Change-Id: Ie5b90988114835831cbe5cdccf63c7cd45719e31
2012-11-27 14:36:29 -08:00

66 lines
1.3 KiB
JavaScript

/**
* VisualEditor data model CenterNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel node for a center tag.
*
* @class
* @constructor
* @extends {ve.dm.BranchNode}
* @param {ve.dm.BranchNode[]} [children] Child nodes to attach
* @param {Object} [element] Reference to element in linear model
*/
ve.dm.CenterNode = function VeDmCenterNode( children, element ) {
// Parent constructor
ve.dm.BranchNode.call( this, 'center', children, element );
};
/* Inheritance */
ve.inheritClass( ve.dm.CenterNode, ve.dm.BranchNode );
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.CenterNode.rules = {
'isWrapped': true,
'isContent': false,
'canContainContent': false,
'hasSignificantWhitespace': false,
'childNodeTypes': null,
'parentNodeTypes': null
};
/**
* Node converters.
*
* @see {ve.dm.Converter}
* @static
* @member
*/
ve.dm.CenterNode.converters = {
'domElementTypes': ['center'],
'toDomElement': function () {
return document.createElement( 'center' );
},
'toDataElement': function () {
return {
'type': 'center'
};
}
};
/* Registration */
ve.dm.nodeFactory.register( 'center', ve.dm.CenterNode );