mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
0a7a845a42
Change-Id: I0b299c840ede1a1b8552cecfc70c5760ab036181
37 lines
825 B
JavaScript
37 lines
825 B
JavaScript
/*!
|
|
* VisualEditor DataModel MWGalleryNode class.
|
|
*
|
|
* @copyright 2011-2018 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* DataModel MediaWiki gallery node.
|
|
*
|
|
* @class
|
|
* @extends ve.dm.MWBlockExtensionNode
|
|
*
|
|
* @constructor
|
|
* @param {Object} [element] Reference to element in linear model
|
|
*/
|
|
ve.dm.MWGalleryNode = function VeDmMWGalleryNode() {
|
|
// Parent constructor
|
|
ve.dm.MWGalleryNode.super.apply( this, arguments );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( ve.dm.MWGalleryNode, ve.dm.MWBlockExtensionNode );
|
|
|
|
/* Static members */
|
|
|
|
ve.dm.MWGalleryNode.static.name = 'mwGallery';
|
|
|
|
ve.dm.MWGalleryNode.static.extensionName = 'gallery';
|
|
|
|
ve.dm.MWGalleryNode.static.tagName = 'ul';
|
|
|
|
/* Registration */
|
|
|
|
ve.dm.modelRegistry.register( ve.dm.MWGalleryNode );
|