MediaWiki:Common.js: Difference between revisions
mNo edit summary |
mNo edit summary |
||
| Line 18: | Line 18: | ||
} | } | ||
$(document).ready(function () { | |||
var bmcScript = document.createElement("script"); | |||
bmcScript.setAttribute("data-name", "BMC-Widget"); | |||
bmcScript.setAttribute("data-cfasync", "false"); | |||
bmcScript.src = "https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js"; | |||
bmcScript.setAttribute("data-id", "rajanyaofficial"); | |||
bmcScript.setAttribute("data-description", "Support me on Buy me a coffee!"); | |||
bmcScript.setAttribute("data-message", "Support monthly. Be a silent force behind the movement."); | |||
bmcScript.setAttribute("data-color", "#5F7FFF"); | |||
bmcScript.setAttribute("data-position", "Right"); | |||
bmcScript.setAttribute("data-x_margin", "18"); | |||
bmcScript.setAttribute("data-y_margin", "18"); | |||
document.body.appendChild(bmcScript); | |||
}); | |||
Revision as of 13:07, 10 July 2025
/* 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
}
$(document).ready(function () {
var bmcScript = document.createElement("script");
bmcScript.setAttribute("data-name", "BMC-Widget");
bmcScript.setAttribute("data-cfasync", "false");
bmcScript.src = "https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js";
bmcScript.setAttribute("data-id", "rajanyaofficial");
bmcScript.setAttribute("data-description", "Support me on Buy me a coffee!");
bmcScript.setAttribute("data-message", "Support monthly. Be a silent force behind the movement.");
bmcScript.setAttribute("data-color", "#5F7FFF");
bmcScript.setAttribute("data-position", "Right");
bmcScript.setAttribute("data-x_margin", "18");
bmcScript.setAttribute("data-y_margin", "18");
document.body.appendChild(bmcScript);
});