mediawiki-extensions-Visual.../modules/ve-mw/dm/nodes/ve.dm.MWImageCaptionNode.js
James D. Forrester 0a7a845a42 doc: Bump copyright year
Change-Id: I0b299c840ede1a1b8552cecfc70c5760ab036181
2018-01-03 17:45:07 +00:00

38 lines
997 B
JavaScript

/*!
* VisualEditor DataModel MWImageCaptionNode class.
*
* @copyright 2011-2018 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.MWImageCaptionNode.super.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 );