mediawiki-extensions-Visual.../modules/ve-mw/ui/widgets/ve.ui.MWGalleryGroupWidget.js
Ed Sanders d42a0772bb Move verbose copyright message to AUTHORS.txt
Avoids having to update the date in every file every year,
which we stopped doing.

Change-Id: I7bf7aa0937eef911e00772470091753a7b06fd3d
2023-12-01 16:07:39 +00:00

46 lines
1 KiB
JavaScript

/*!
* VisualEditor user interface MWGalleryGroupWidget class.
*
* @copyright See AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Draggable group widget for reordering images in the MWGalleryDialog.
*
* @class
* @extends OO.ui.Widget
* @mixins OO.ui.mixin.DraggableGroupElement
*
* @constructor
* @param {Object} [config] Configuration options
* @cfg {string} [orientation='vertical']
*/
ve.ui.MWGalleryGroupWidget = function VeUiMWGalleryGroupWidget( config ) {
// Configuration initialization
config = config || {};
// Parent constructor
ve.ui.MWGalleryGroupWidget.super.apply( this, arguments );
// Mixin constructors
OO.ui.mixin.DraggableGroupElement.call( this, ve.extendObject( {}, config, { $group: this.$element } ) );
// Events
this.aggregate( {
edit: 'editItem'
} );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWGalleryGroupWidget, OO.ui.Widget );
OO.mixinClass( ve.ui.MWGalleryGroupWidget, OO.ui.mixin.DraggableGroupElement );
/* Events */
/**
* @event editItem
*/