mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.MWHeadingNode.js
Ed Sanders 0ce20b6e16 Create MediaWiki specific nodes to contain MW specific rules.
Heading and Preformatted nodes have rules that should only
exist under a document node in MediaWiki.

Two new node types have been created as has a new DropdownTool which
uses these. The MW init options have been changed to use the new
DropdownTool.

Bug: 45295

Change-Id: I3f47e1ae1f5c1415bde58a75385e4bf5f4b8fffc
2013-03-12 16:28:29 -07:00

35 lines
808 B
JavaScript

/*!
* VisualEditor ContentEditable MWHeadingNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable MW heading node.
*
* @class
* @extends ve.ce.HeadingNode
* @constructor
* @param {ve.dm.MWHeadingNode} model Model to observe
*/
ve.ce.MWHeadingNode = function VeCeMWHeadingNode( model ) {
// Parent constructor
ve.ce.HeadingNode.call( this, model );
};
/* Inheritance */
ve.inheritClass( ve.ce.MWHeadingNode, ve.ce.HeadingNode );
/* Static Properties */
// TODO: Make this static
ve.ce.MWHeadingNode.domWrapperElementTypes = ve.ce.HeadingNode.domWrapperElementTypes;
ve.ce.MWHeadingNode.static.name = 'MWheading';
/* Registration */
ve.ce.nodeFactory.register( ve.ce.MWHeadingNode );