mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
51f4b4be54
Change-Id: If7d0159e984d9ccb4d5c31effb62bb9612260fda
35 lines
847 B
JavaScript
35 lines
847 B
JavaScript
/*!
|
|
* VisualEditor DataModel AlienBlockNode class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel alien block node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.LeafNode
|
|
* @constructor
|
|
* @param {number} [length] Length of content data in document
|
|
* @param {Object} [element] Reference to element in linear model
|
|
*/
|
|
ve.dm.AlienBlockNode = function VeDmAlienBlockNode( length, element ) {
|
|
// Parent constructor
|
|
ve.dm.LeafNode.call( this, 'alienBlock', 0, element );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.dm.AlienBlockNode, ve.dm.LeafNode );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.dm.AlienBlockNode.static.name = 'alienBlock';
|
|
|
|
ve.dm.AlienBlockNode.static.matchTagNames = [];
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.nodeFactory.register( 'alienBlock', ve.dm.AlienBlockNode );
|