mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-12-01 02:36:35 +00:00
Merge "Hygiene: Remove unnecessary IIFE in changeListeners/eventLogging.js"
This commit is contained in:
commit
319c04ce2f
BIN
resources/dist/index.js
vendored
BIN
resources/dist/index.js
vendored
Binary file not shown.
BIN
resources/dist/index.js.map
vendored
BIN
resources/dist/index.js.map
vendored
Binary file not shown.
|
@ -1,6 +1,6 @@
|
||||||
( function ( $ ) {
|
var $ = jQuery;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an instance of the event logging change listener.
|
* Creates an instance of the event logging change listener.
|
||||||
*
|
*
|
||||||
* When an event is enqueued to be logged it'll be logged using the schema.
|
* When an event is enqueued to be logged it'll be logged using the schema.
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
* @param {mw.eventLog.Schema} schema
|
* @param {mw.eventLog.Schema} schema
|
||||||
* @return {ext.popups.ChangeListener}
|
* @return {ext.popups.ChangeListener}
|
||||||
*/
|
*/
|
||||||
module.exports = function ( boundActions, schema ) {
|
module.exports = function ( boundActions, schema ) {
|
||||||
return function ( _, state ) {
|
return function ( _, state ) {
|
||||||
var eventLogging = state.eventLogging,
|
var eventLogging = state.eventLogging,
|
||||||
event = eventLogging.event;
|
event = eventLogging.event;
|
||||||
|
@ -23,6 +23,4 @@
|
||||||
boundActions.eventLogged();
|
boundActions.eventLogged();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
}( jQuery ) );
|
|
||||||
|
|
Loading…
Reference in a new issue