mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-24 07:34:11 +00:00
0192822522
Change-Id: I33f62c74fe231c74cf54937aa43ac35ae15a0b37
13 lines
295 B
JavaScript
13 lines
295 B
JavaScript
/*global disablePopups: false */
|
|
|
|
// Disable NavigationPopups
|
|
// This should be happening in NavPopups itself or by disabling the gadget
|
|
// This is a temporary fix
|
|
( function ( $ ) {
|
|
$( function () {
|
|
if ( typeof disablePopups !== 'undefined' ) {
|
|
disablePopups();
|
|
}
|
|
} );
|
|
} ( jQuery ) );
|