mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.ImageNode.js
Christian Williams 8ec2276bb5 ImageNode Todos
* Removed mousedown handler (dragging is handled in ve.ce.surface)
* Added attribute change handler to ve.ce.Node to keep attribute changes on the model in sync with the DOM

Change-Id: I1d6a7f3dc3136439ce511a4f3eb5a54797c8f996
2013-01-17 15:40:06 -08:00

44 lines
824 B
JavaScript

/*!
* VisualEditor ContentEditable ImageNode class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable image node.
*
* @class
* @extends ve.ce.LeafNode
* @constructor
* @param {ve.dm.ImageNode} model Model to observe.
*/
ve.ce.ImageNode = function VeCeImageNode( model ) {
// Parent constructor
ve.ce.LeafNode.call( this, 'image', model, $( '<img>' ) );
// DOM Changes
this.$.addClass( 've-ce-imageNode' );
};
/* Inheritance */
ve.inheritClass( ve.ce.ImageNode, ve.ce.LeafNode );
/* Static Properties */
/**
* Node rules.
*
* @see ve.ce.NodeFactory
* @static
* @property
*/
ve.ce.ImageNode.rules = {
'canBeSplit': false
};
/* Registration */
ve.ce.nodeFactory.register( 'image', ve.ce.ImageNode );