"use strict"; (function () { var viewport = document.querySelector("#viewport"); var root = document.querySelector("#root"); var bookmarkJewel = document.querySelector("#bookmarks_jewel"); if (!viewport || !root || !bookmarkJewel) { console.log('Menu.js: main elements not found'); Frost.emit(0); return; } var menuA = bookmarkJewel.querySelector("a"); if (!menuA) { console.log('Menu.js: menu links not found'); Frost.emit(0); return; } var jewel = document.querySelector('#mJewelNav'); if (!jewel) { console.log('Menu.js: jewel is null'); return; } var y = new MutationObserver(function () { viewport.removeAttribute('style'); root.removeAttribute('style'); }); y.observe(viewport, { attributes: true }); y.observe(root, { attributes: true }); var x = new MutationObserver(function () { var menu = document.querySelector('.mSideMenu'); if (menu) { x.disconnect(); console.log("Found side menu"); while (root.firstChild) { root.removeChild(root.firstChild); } while (menu.childNodes.length) { viewport.appendChild(menu.childNodes[0]); } Frost.emit(0); setTimeout(function () { y.disconnect(); console.log('Unhook styler'); }, 500); } }); x.observe(jewel, { childList: true, subtree: true }); menuA.click(); }).call(undefined);