Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
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);
}