mediawiki-extensions-Visual.../modules/ve/ce/ve.ce.LeafNode.js
Catrope 74ed8e8766 Rename ve_foo_bar back to VeFooBar per discussion
Change-Id: Ibf6d4f08c4761727b2e3952a76e474c8221b38f9
2012-09-06 16:15:55 -07:00

36 lines
844 B
JavaScript

/**
* VisualEditor content editable LeafNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable node that can not have any children.
*
* @class
* @abstract
* @constructor
* @extends {ve.ce.Node}
* @param {String} type Symbolic name of node type
* @param {ve.dm.LeafNode} model Model to observe
* @param {jQuery} [$element] Element to use as a container
*/
ve.ce.LeafNode = function VeCeLeafNode( type, model, $element ) {
ve.LeafNode.call( this );
// Parent constructor
ve.ce.Node.call( this, type, model, $element );
// DOM Changes
if ( model.isWrapped() ) {
this.$.addClass( 've-ce-leafNode' );
}
};
/* Inheritance */
ve.inheritClass( ve.ce.LeafNode, ve.ce.Node );
ve.mixinClass( ve.ce.LeafNode, ve.LeafNode );