You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready(function () {
setTimeout(() => {
$('body').addClass('fade-in');
}, 100); // 0.1s delay before showing content
});
$(document).ready(function () {
// Immediately inject the loading screen before anything else
var loadingScreen = document.createElement("div");
loadingScreen.id = "loading-screen";
loadingScreen.innerHTML = `
<div class="loading-circle"></div>
<p id="loading-message">Loading...</p>
`;
document.body.prepend(loadingScreen);
// Create the <p> tag dynamically to display messages
var messageTag = document.createElement("p");
messageTag.id = "dynamic-message";
loadingScreen.appendChild(messageTag); // Add the new message tag to the loading screen
000
1:0
Return to MediaWiki:Common.js.