mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.BreakNode.js
Ed Sanders edcaaf9edc Use static.name once for ce and dm nodes
Add a static.name property to ce nodes and make sure both ce
and dm nodes always use the static.name property in constructors
and registration calls.

The result of this is that any given node type should now only
appear once in the code as a string.

Bug: 45701
Change-Id: Ibf31de16ab28ad58209c1443cd74f93dda278998
2013-03-07 17:19:39 -08:00

35 lines
717 B
JavaScript

/*!
* VisualEditor ContentEditable BreakNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable break node.
*
* @class
* @extends ve.ce.LeafNode
* @constructor
* @param {ve.dm.BreakNode} model Model to observe
*/
ve.ce.BreakNode = function VeCeBreakNode( model ) {
// Parent constructor
ve.ce.LeafNode.call( this, model, $( '<br>' ) );
// DOM Changes
this.$.addClass( 've-ce-BreakNode' );
};
/* Inheritance */
ve.inheritClass( ve.ce.BreakNode, ve.ce.LeafNode );
/* Static Properties */
ve.ce.BreakNode.static.name = 'break';
/* Registration */
ve.ce.nodeFactory.register( ve.ce.BreakNode );