mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.CenterNode.js

64 lines
1.3 KiB
JavaScript
Raw Normal View History

/**
* 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} [attributes] Reference to map of attribute key/value pairs
* @param {Object} [internal] Reference to internal data object
*/
ve.dm.CenterNode = function ( children, attributes, internal ) {
// Inheritance
ve.dm.BranchNode.call( this, 'center', children, attributes, internal );
};
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.CenterNode.rules = {
'isWrapped': true,
'isContent': false,
'canContainContent': false,
'childNodeTypes': null,
'parentNodeTypes': null
};
/**
* Node converters.
*
* @see {ve.dm.Converter}
* @static
* @member
*/
ve.dm.CenterNode.converters = {
'domElementTypes': ['center'],
'toDomElement': function ( type, element ) {
return document.createElement( 'center' );
},
'toDataElement': function ( tag, element ) {
return { 'type': 'center' };
}
};
/* Registration */
ve.dm.nodeFactory.register( 'center', ve.dm.CenterNode );
/* Inheritance */
ve.extendClass( ve.dm.CenterNode, ve.dm.BranchNode );