mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-04 10:48:52 +00:00
d42a0772bb
Avoids having to update the date in every file every year, which we stopped doing. Change-Id: I7bf7aa0937eef911e00772470091753a7b06fd3d
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
/*!
|
|
* VisualEditor DataModel MWGalleryImageCaptionNode class.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel gallery image caption node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.BranchNode
|
|
*
|
|
* @constructor
|
|
* @param {Object} [element] Reference to element in linear model
|
|
* @param {ve.dm.Node[]} [children]
|
|
*/
|
|
ve.dm.MWGalleryImageCaptionNode = function VeDmMWGalleryImageCaptionNode() {
|
|
// Parent constructor
|
|
ve.dm.MWGalleryImageCaptionNode.super.apply( this, arguments );
|
|
};
|
|
|
|
OO.inheritClass( ve.dm.MWGalleryImageCaptionNode, ve.dm.BranchNode );
|
|
|
|
ve.dm.MWGalleryImageCaptionNode.static.name = 'mwGalleryImageCaption';
|
|
|
|
ve.dm.MWGalleryImageCaptionNode.static.matchTagNames = [];
|
|
|
|
ve.dm.MWGalleryImageCaptionNode.static.parentNodeTypes = [ 'mwGalleryImage' ];
|
|
|
|
ve.dm.MWGalleryImageCaptionNode.static.toDomElements = function ( dataElement, doc ) {
|
|
var div = doc.createElement( 'div' );
|
|
div.classList.add( 'gallerytext' );
|
|
return [ div ];
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWGalleryImageCaptionNode );
|