diff options
Diffstat (limited to 'app/src/main/assets/js/menu.js')
-rw-r--r-- | app/src/main/assets/js/menu.js | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/app/src/main/assets/js/menu.js b/app/src/main/assets/js/menu.js deleted file mode 100644 index 5464865c..00000000 --- a/app/src/main/assets/js/menu.js +++ /dev/null @@ -1,85 +0,0 @@ -// Generated by CoffeeScript 2.3.2 -(function() { - // click menu and move contents to main view - var jewel, menuA, root, viewport, x, y; - - viewport = document.querySelector("#viewport"); - - root = document.querySelector("#root"); - - menuA = document.querySelector("#bookmarks_jewel").querySelector("a"); - - if (!viewport) { - console.log("Menu.js: viewport is null"); - if (typeof Frost !== "undefined" && Frost !== null) { - Frost.emit(0); - } - return; - } - - if (!root) { - console.log("Menu.js: root is null"); - if (typeof Frost !== "undefined" && Frost !== null) { - Frost.emit(0); - } - return; - } - - if (!menuA) { - console.log("Menu.js: jewel is null"); - if (typeof Frost !== "undefined" && Frost !== null) { - Frost.emit(0); - } - return; - } - - y = new MutationObserver(function() { - viewport.removeAttribute("style"); - root.removeAttribute("style"); - }); - - y.observe(viewport, { - attributes: true - }); - - y.observe(root, { - attributes: true - }); - - x = new MutationObserver(function() { - var menu; - menu = document.querySelector(".mSideMenu"); - if (menu !== null) { - x.disconnect(); - console.log("Found side menu"); - while (root.firstChild) { - root.removeChild(root.firstChild); - } - while (menu.childNodes.length) { - console.log("append"); - viewport.appendChild(menu.childNodes[0]); - } - if (typeof Frost !== "undefined" && Frost !== null) { - Frost.emit(0); - } - setTimeout((function() { - y.disconnect(); - console.log("Unhook styler"); - }), 500); - } - }); - - jewel = document.querySelector("#mJewelNav"); - - if (!jewel) { - console.log("Menu.js: jewel is null"); - } - - x.observe(jewel, { - childList: true, - subtree: true - }); - - menuA.click(); - -}).call(this); |