/*! * 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.ImageNode * @constructor * @param {ve.dm.MWImageNode} model Model to observe */ ve.ce.MWImageNode = function VeCeMWImageNode( model ) { // Parent constructor ve.ce.ImageNode.call( this, model ); // Properties this.$ = $( '<' + ( model.getAttribute( 'isLinked' ) ? 'a' : 'span' ) + '>' ); // Initialization this.$ .attr( 'contenteditable', false ) .addClass( 've-ce-mwImageNode' ) .append( this.$image ) .data( 'view', this.$image.data( 'view' ) ); this.onUpdate(); }; /* Inheritance */ ve.inheritClass( ve.ce.MWImageNode, ve.ce.ImageNode ); /* Static Properties */ ve.ce.MWImageNode.static.name = 'MWimage'; /* Methods */ /* Registration */ ve.ce.nodeFactory.register( ve.ce.MWImageNode );