mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
38 lines
831 B
JavaScript
38 lines
831 B
JavaScript
|
/*!
|
||
|
* VisualEditor ContentEditable MWPreNode class.
|
||
|
*
|
||
|
* @copyright 2011-2017 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 );
|