/*! * VisualEditor ContentEditable MWEntityNode class. * * @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt * @license The MIT License (MIT); see LICENSE.txt */ /** * ContentEditable MediaWiki image node. * * @class * @extends ve.ce.LeafNode * @constructor * @param {ve.dm.MWImageNode} model Model to observe */ ve.ce.MWImageNode = function VeCeMWImageNode( model ) { // Parent constructor ve.ce.LeafNode.call( this, model, $( '' ) ); // DOM Changes this.$.addClass( 've-ce-MWImageNode' ); this.$.attr( 'contenteditable', false ); this.$img = $( '' ).appendTo( this.$ ); this.$img.attr( { 'width': this.model.getAttribute( 'width' ), 'height': this.model.getAttribute( 'height' ), 'src': this.model.getAttribute( 'src' ) } ); // Events this.model.addListenerMethod( this, 'update', 'onUpdate' ); this.$.on( { 'click': ve.bind( this.onClick, this ), 'dragstart': ve.bind( this.onDragstart, this ) } ); // Initialization this.onUpdate(); }; /* Inheritance */ ve.inheritClass( ve.ce.MWImageNode, ve.ce.LeafNode ); /* Static Properties */ ve.ce.MWImageNode.static.name = 'MWimage'; /* Methods */ ve.ce.MWImageNode.prototype.onUpdate = function () { // ... }; /** * Handle the mouse click. * * @method * @param {jQuery.Event} e Click event */ ve.ce.MWImageNode.prototype.onClick = function ( e ) { e.preventDefault(); return false; }; /** * Handle the dragstart. * * @method * @param {jQuery.Event} e Dragstart event */ ve.ce.MWImageNode.prototype.onDragstart = function ( e ) { e.preventDefault(); return false; }; /* Registration */ ve.ce.nodeFactory.register( ve.ce.MWImageNode );