MediaWiki:Common.js: Difference between revisions
No edit summary |
No edit summary |
||
Line 41: | Line 41: | ||
$(document).ready(function () { | $(document).ready(function () { | ||
// Create a container div for the BMC button | |||
var container = document.createElement("div"); | var container = document.createElement("div"); | ||
container.id = "bmc-wbtn"; | |||
container.style.textAlign = "center"; | container.style.textAlign = "center"; | ||
container.style.margin = " | container.style.margin = "20px 0"; | ||
document.body.insertBefore(container, document.body.firstChild); | |||
// Create and inject the script | |||
var script = document.createElement("script"); | var script = document.createElement("script"); | ||
script.src = "https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js"; | script.src = "https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js"; | ||
Line 57: | Line 62: | ||
script.setAttribute("data-coffee-color", "#ffffff"); | script.setAttribute("data-coffee-color", "#ffffff"); | ||
document.body.appendChild(script); | |||
}); | }); |
Revision as of 13:24, 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 } //coffee $(document).ready(function () { var link = document.createElement('a'); link.href = "https://www.buymeacoffee.com/rajanyaofficial"; link.textContent = "🛡️ Support Monthly"; link.target = "_blank"; link.style.position = "fixed"; link.style.bottom = "20px"; link.style.right = "20px"; link.style.background = "#5F7FFF"; link.style.color = "#fff"; link.style.padding = "10px 15px"; link.style.borderRadius = "8px"; link.style.fontFamily = "Poppins, sans-serif"; link.style.fontSize = "14px"; link.style.zIndex = "9999"; link.style.textDecoration = "none"; link.style.boxShadow = "0 4px 6px rgba(0,0,0,0.2)"; document.body.appendChild(link); }); $(document).ready(function () { // Create a container div for the BMC button var container = document.createElement("div"); container.id = "bmc-wbtn"; container.style.textAlign = "center"; container.style.margin = "20px 0"; document.body.insertBefore(container, document.body.firstChild); // Create and inject the script var script = document.createElement("script"); script.src = "https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js"; script.setAttribute("data-name", "bmc-button"); script.setAttribute("data-slug", "rajanyaofficial"); script.setAttribute("data-color", "#FFDD00"); script.setAttribute("data-emoji", "🛡️"); script.setAttribute("data-font", "Bree"); script.setAttribute("data-text", "Support Our Work"); script.setAttribute("data-outline-color", "#000000"); script.setAttribute("data-font-color", "#000000"); script.setAttribute("data-coffee-color", "#ffffff"); document.body.appendChild(script); });