mediawiki-extensions-Visual.../modules/ve/dm/nodes/ve.dm.MWImageCaptionNode.js
Inez Korczyński 8d6f2f9c42 Get rid of mw-figcaption class (Parsoid does not use it anymore)
Change-Id: Id4aed15b7db6a3a42bb75637c3d31b52677a8a4d
2013-06-27 16:13:28 -07:00

41 lines
1.1 KiB
JavaScript

/*!
* VisualEditor DataModel MWImageCaptionNode class.
*
* @copyright 2011-2013 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 {ve.dm.BranchNode[]} [children] Child nodes to attach
* @param {Object} [element] Reference to element in linear model
*/
ve.dm.MWImageCaptionNode = function VeDmMWImageCaptionNode( children, element ) {
// Parent constructor
ve.dm.BranchNode.call( this, children, element );
};
ve.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.toDataElement = function () {
// Probably not needed
return { 'type': 'mwImageCaption' };
};
ve.dm.MWImageCaptionNode.static.toDomElements = function ( dataElement, doc ) {
return [ doc.createElement( 'figcaption' ) ];
};
/* Registration */
ve.dm.modelRegistry.register( ve.dm.MWImageCaptionNode );