Merge "MWGalleryItemWidget: Remove unnecessary event argument"

This commit is contained in:
jenkins-bot 2024-10-29 14:50:13 +00:00 committed by Gerrit Code Review
commit 407bb951b8

View file

@ -84,7 +84,7 @@ OO.mixinClass( ve.ui.MWGalleryItemWidget, OO.ui.mixin.TabIndexedElement );
* @fires ve.ui.MWGalleryItemWidget#edit
*/
ve.ui.MWGalleryItemWidget.prototype.onItemClick = function () {
this.emit( 'edit', this );
this.emit( 'edit' );
};
/**