This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('RVC Modpack 3.0 client.js loading...'); | |
// Wait for the page to be fully loaded before trying to remove footer | |
function waitForElement(selector, callback) { | |
const element = document.querySelector(selector); | |
if (element) { | |
callback(element); | |
} else { | |
setTimeout(() => waitForElement(selector, callback), 100); | |
} |