mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.AlienBlockNode.js
Trevor Parscal 255ce870e2 Puttin' em white-spacers where they aught'a be
function() -> function ()
){ -> ) {

Change-Id: I20a85fcf79d7aec64f7f2559e84c0279550d4eea
2012-08-06 18:52:19 -07:00

49 lines
1.1 KiB
JavaScript

/**
* VisualEditor data model AlienBlockNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel node for an alien block node.
*
* @class
* @constructor
* @extends {ve.dm.LeafNode}
* @param {Integer} [length] Length of content data in document
* @param {Object} [attributes] Reference to map of attribute key/value pairs
*/
ve.dm.AlienBlockNode = function ( length, attributes ) {
// Inheritance
ve.dm.LeafNode.call( this, 'alienBlock', 0, attributes );
};
/* Static Members */
/**
* Node rules.
*
* @see ve.dm.NodeFactory
* @static
* @member
*/
ve.dm.AlienBlockNode.rules = {
'isWrapped': true,
'isContent': false,
'canContainContent': false,
'childNodeTypes': [],
'parentNodeTypes': null
};
// This is a special node, no converter registration is required
ve.dm.AlienBlockNode.converters = null;
/* Registration */
ve.dm.nodeFactory.register( 'alienBlock', ve.dm.AlienBlockNode );
/* Inheritance */
ve.extendClass( ve.dm.AlienBlockNode, ve.dm.LeafNode );