mediawiki-extensions-Visual.../modules/ve-mw/dm/nodes/ve.dm.MWPreformattedNode.js
James D. Forrester 0a7a845a42 doc: Bump copyright year
Change-Id: I0b299c840ede1a1b8552cecfc70c5760ab036181
2018-01-03 17:45:07 +00:00

37 lines
981 B
JavaScript

/*!
* VisualEditor DataModel MWPreformattedNode class.
*
* @copyright 2011-2018 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.MWPreformattedNode.super.apply( this, arguments );
};
/* Inheritance */
OO.inheritClass( ve.dm.MWPreformattedNode, ve.dm.PreformattedNode );
/* Static Properties */
ve.dm.MWPreformattedNode.static.name = 'mwPreformatted';
// Indent-pre in wikitext only works in some contexts, it's impossible e.g. in list items
ve.dm.MWPreformattedNode.static.suggestedParentNodeTypes = [ 'document', 'tableCell' ];
/* Registration */
ve.dm.modelRegistry.register( ve.dm.MWPreformattedNode );