mediawiki-extensions-Visual.../modules/ve-mw/dm/nodes/ve.dm.MWPreformattedNode.js
James D. Forrester 2c00c39393 Update VE core submodule to master (2587549)
Update DM node constructors for I81c60d4a in VE core.

New changes:
2587549 [BREAKING CHANGE] Fix Node construction arguments

Change-Id: I8d4f37b631fe85a78c72407937477963ac49f87a
2014-06-06 20:28:03 -07:00

36 lines
870 B
JavaScript

/*!
* VisualEditor DataModel MWPreformattedNode class.
*
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* DataModel MediaWiki preformatted node.
*
* @class
* @extends ve.dm.PreformattedNode
*
* @constructor
* @param {Object} [element] Reference to element in linear model
* @param {ve.dm.Node[]} [children]
*/
ve.dm.MWPreformattedNode = function VeDmMWPreformattedNode() {
// Parent constructor
ve.dm.PreformattedNode.apply( this, arguments );
};
/* Inheritance */
OO.inheritClass( ve.dm.MWPreformattedNode, ve.dm.PreformattedNode );
/* Static Properties */
ve.dm.MWPreformattedNode.static.name = 'mwPreformatted';
ve.dm.MWPreformattedNode.static.suggestedParentNodeTypes = [ 'document' ];
/* Registration */
ve.dm.modelRegistry.register( ve.dm.MWPreformattedNode );