mudachyo / Hamster-Kombat

Running Hamster Kombat in your browser | Запуск Hamster Kombat в браузере
177 stars 31 forks source link

Fix minigame position #27

Open newtoneweb opened 6 hours ago

newtoneweb commented 6 hours ago

// Центрируем блок мини игры function fixMinigamePosition() { if (location.pathname.split("/").pop() !== "playground") return const minigameBg = document.querySelector('.minigame-bg'); if (minigameBg) { minigameBg.style.transform = 'none'; } } // Наблюдатель за изменениями в DOM const observer = new MutationObserver(function (mutations) { mutations.forEach(function (mutation) { if (mutation.addedNodes.length) { replaceScriptUrl(); fixMinigamePosition() } }); });

newtoneweb commented 6 hours ago
// Центрируем блок мини игры
function fixMinigamePosition() {
    if (location.pathname.split("/").pop() !== "playground") return
    const minigameBg = document.querySelector('.minigame-bg');
    if (minigameBg) {
        minigameBg.style.transform = 'none';
    }
}
// Наблюдатель за изменениями в DOM
const observer = new MutationObserver(function (mutations) {
    mutations.forEach(function (mutation) {
        if (mutation.addedNodes.length) {
            replaceScriptUrl();
            fixMinigamePosition()
        }
    });
});
mudachyo commented 4 hours ago

use Pull requests

wazerstar commented 58 minutes ago

use Pull requests

Hey have you seen the other reports I made, I think i made 3-4 of em 📦