/*! * VisualEditor ContentEditable ImageNode class. * * @copyright 2011-2013 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, $( '' ) ); // DOM Changes this.$.addClass( 've-ce-imageNode' ); }; /* Inheritance */ ve.inheritClass( ve.ce.ImageNode, ve.ce.LeafNode ); /* Registration */ ve.ce.nodeFactory.register( 'image', ve.ce.ImageNode );