mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.PreformattedNode.js
Ed Sanders e6f48c5c93 'Config' -> 'Configuration' in all comments
Because the former isn't a real word.

Change-Id: Ie6ed15f9e390b357bbaa768b57f3c3fd7cf21181
2013-09-25 11:23:16 +01:00

37 lines
895 B
JavaScript

/*!
* VisualEditor ContentEditable PreformattedNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable preformatted node.
*
* @class
* @extends ve.ce.BranchNode
* @constructor
* @param {ve.dm.PreformattedNode} model Model to observe
* @param {Object} [config] Configuration options
*/
ve.ce.PreformattedNode = function VeCePreformattedNode( model, config ) {
// Parent constructor
ve.ce.ContentBranchNode.call( this, model, config );
};
/* Inheritance */
ve.inheritClass( ve.ce.PreformattedNode, ve.ce.ContentBranchNode );
/* Static Properties */
ve.ce.PreformattedNode.static.name = 'preformatted';
ve.ce.PreformattedNode.static.tagName = 'pre';
ve.ce.PreformattedNode.static.canBeSplit = true;
/* Registration */
ve.ce.nodeFactory.register( ve.ce.PreformattedNode );