mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-14 18:15:19 +00:00
ada58df361
Change-Id: I3c618c196e504a80ca297a4132a17f1977a24fb7
38 lines
983 B
JavaScript
38 lines
983 B
JavaScript
/*!
|
|
* VisualEditor DataModel MWImageCaptionNode class.
|
|
*
|
|
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel image caption item node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.BranchNode
|
|
*
|
|
* @constructor
|
|
* @param {Object} [element] Reference to element in linear model
|
|
* @param {ve.dm.Node[]} [children]
|
|
*/
|
|
ve.dm.MWImageCaptionNode = function VeDmMWImageCaptionNode() {
|
|
// Parent constructor
|
|
ve.dm.BranchNode.apply( this, arguments );
|
|
};
|
|
|
|
OO.inheritClass( ve.dm.MWImageCaptionNode, ve.dm.BranchNode );
|
|
|
|
ve.dm.MWImageCaptionNode.static.name = 'mwImageCaption';
|
|
|
|
ve.dm.MWImageCaptionNode.static.matchTagNames = [];
|
|
|
|
ve.dm.MWImageCaptionNode.static.parentNodeTypes = [ 'mwBlockImage' ];
|
|
|
|
ve.dm.MWImageCaptionNode.static.toDomElements = function ( dataElement, doc ) {
|
|
return [ doc.createElement( 'figcaption' ) ];
|
|
};
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWImageCaptionNode );
|