mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.MWBlockImageNode.js
Inez Korczyński 4c6d296067 Initial support for MWBlockImageNode - thumb images with captions :-)
Change-Id: I4d81533ed9193ff934333f7c1ad80e03e33b236c
2013-04-25 21:49:32 +00:00

43 lines
1.1 KiB
JavaScript

/*!
* VisualEditor ContentEditable MWBlockImageNode 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.BranchNode
* @constructor
* @param {ve.dm.MWBlockImageNode} model Model to observe
*/
ve.ce.MWBlockImageNode = function VeCeMWBlockImageNode( model ) {
// Parent constructor
ve.ce.BranchNode.call( this, model, $( '<figure>' ) );
// At this moment this.$ have children added to it (thanks to ve.ce.BranchNode.onSplice).
// In this particular case there is only one child - <figcaption>
this.$image = $( '<img>' ).attr( 'src', this.model.getAttribute( 'src' ) );
this.$image.prependTo( this.$ );
};
/* Inheritance */
ve.inheritClass( ve.ce.MWBlockImageNode, ve.ce.BranchNode );
/* Static Properties */
ve.ce.MWBlockImageNode.static.name = 'MWblockimage';
/* Methods */
ve.ce.MWBlockImageNode.prototype.setupSlugs = function () {
// Intentionally empty - as we don't want/need slugs inside figure tag
};
/* Registration */
ve.ce.nodeFactory.register( ve.ce.MWBlockImageNode );