MediaWiki:Common.js
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */
// Google Analytics for GA4 (G-5MQXEFVQBE)
var gtagScript = document.createElement("script");
gtagScript.src = "https://www.googletagmanager.com/gtag/js?id=G-5MQXEFVQBE";
gtagScript.async = true;
document.head.appendChild(gtagScript);
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5MQXEFVQBE');
// Remove View History tab & Recent Changes link for anonymous users
if (!mw.config.get('wgUserName')) {
$('#ca-history').remove(); // Removes history tab
$('#n-recentchanges').remove(); // Removes recent changes link
$('a[title="Special:RecentChanges"]').remove(); // Extra check
}
//coffee
mw.loader.using('mediawiki.util', function () {
$(function () {
var script = document.createElement('script');
script.setAttribute('src', 'https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js');
script.setAttribute('data-name', 'BMC-Widget');
script.setAttribute('data-cfasync', 'false');
script.setAttribute('data-id', 'rajanyaofficial');
script.setAttribute('data-description', 'Support me on Buy me a coffee!');
script.setAttribute('data-message', 'Support monthly. Be a silent force behind the movement.');
script.setAttribute('data-color', '#5F7FFF');
script.setAttribute('data-position', 'Right');
script.setAttribute('data-x_margin', '18');
script.setAttribute('data-y_margin', '18');
document.body.appendChild(script);
});
});