mediawiki-extensions-Visual.../modules/ve/ce/nodes/ve.ce.MWImageCaptionNode.js
Trevor Parscal 3be13a7cbc Consistent use of mw in HTML classes, and data element and annotation types
MWfooBar or MWfoobar should be mwFooBar

Change-Id: I30f0ef05960c9df218ef6f1cb161ff6ccd529bc7
2013-05-28 13:49:56 +01:00

75 lines
1.8 KiB
JavaScript

/*!
* VisualEditor ContentEditable ListItemNode class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/*global mw */
/**
* ContentEditable image caption item node.
*
* @class
* @extends ve.ce.BranchNode
* @constructor
* @param {ve.dm.MWImageCaptionNode} model Model to observe
* @param {Object} [config] Config options
*/
ve.ce.MWImageCaptionNode = function VeCeMWImageCaptionNode( model, config ) {
// Parent constructor
ve.ce.BranchNode.call( this, model, config );
// DOM changes
this.$.addClass( 'thumbcaption' );
};
/* Inheritance */
ve.inheritClass( ve.ce.MWImageCaptionNode, ve.ce.BranchNode );
/* Static Properties */
ve.ce.MWImageCaptionNode.static.name = 'mwImageCaption';
ve.ce.MWImageCaptionNode.static.tagName = 'div';
/* Methods */
/**
* TODO: Magnify should not be built nor appended if this is a caption of frame (vs. thumb) image.
*/
ve.ce.MWImageCaptionNode.prototype.onSplice = function () {
if ( this.$magnify ) {
this.$magnify.detach();
} else {
this.buildMagnify();
}
// Call parent implementation
ve.ce.BranchNode.prototype.onSplice.apply( this, arguments );
this.$magnify.prependTo( this.$ );
};
ve.ce.MWImageCaptionNode.prototype.buildMagnify = function() {
this.$magnify = $( '<div>' )
.addClass( 'magnify' );
this.$a = $( '<a>' )
.addClass( 'internal' )
// It's inside a protected node, so user can't see href/title anyways.
//.attr( 'href', '/wiki/File:Wiki.png')
//.attr( 'title', 'Enlarge' )
.appendTo( this.$magnify );
this.$img = $( '<img>' )
.attr( 'src', mw.config.get( 'wgVisualEditor' ).magnifyClipIconURL )
.attr( 'width', 15 )
.attr( 'height', 11 )
//.attr( 'alt', '' )
.appendTo( this.$a );
};
/* Registration */
ve.ce.nodeFactory.register( ve.ce.MWImageCaptionNode );