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

38 lines
831 B
JavaScript

/*!
* VisualEditor ContentEditable MWPreNode class.
*
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable MediaWiki pre node.
*
* @class
* @extends ve.ce.MWBlockExtensionNode
*
* @constructor
* @param {ve.dm.MWPreNode} model Model to observe
* @param {Object} [config] Configuration options
*/
ve.ce.MWPreNode = function VeCeMWPreNode() {
// Parent constructor
ve.ce.MWPreNode.super.apply( this, arguments );
};
/* Inheritance */
OO.inheritClass( ve.ce.MWPreNode, ve.ce.MWBlockExtensionNode );
/* Static Properties */
ve.ce.MWPreNode.static.name = 'mwPre';
ve.ce.MWPreNode.static.tagName = 'pre';
ve.ce.MWPreNode.static.primaryCommandName = 'pre';
/* Registration */
ve.ce.nodeFactory.register( ve.ce.MWPreNode );