2017-03-02 21:20:35 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor ContentEditable MWPreNode class.
|
|
|
|
*
|
2018-01-03 00:54:47 +00:00
|
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
2017-03-02 21:20:35 +00:00
|
|
|
* @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 );
|