mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
0ce20b6e16
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
35 lines
808 B
JavaScript
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 );
|