mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
45 lines
1,022 B
JavaScript
45 lines
1,022 B
JavaScript
|
/*!
|
||
|
* VisualEditor user interface MWGalleryGroupWidget class.
|
||
|
*
|
||
|
* @copyright 2016 VisualEditor Team and others; 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
|
||
|
*/
|
||
|
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, $.extend( {}, 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
|
||
|
*/
|