mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-12-04 03:58:41 +00:00
16 lines
388 B
JavaScript
16 lines
388 B
JavaScript
|
( function ( $, mw ) {
|
||
|
/**
|
||
|
* Log the popup event as defined in the schema
|
||
|
*
|
||
|
* https://meta.wikimedia.org/wiki/Schema:Popups
|
||
|
*/
|
||
|
var schemaPopups = new mw.eventLog.Schema(
|
||
|
'Popups',
|
||
|
mw.config.get( 'wgPopupsSchemaPopupsSamplingRate', 0 )
|
||
|
);
|
||
|
|
||
|
mw.trackSubscribe( 'ext.popups.schemaPopups', function ( topic, data ) {
|
||
|
schemaPopups.log( data );
|
||
|
} );
|
||
|
} )( jQuery, mediaWiki );
|