From: Florian Eckert Date: Fri, 11 Jan 2019 09:01:37 +0000 (+0100) Subject: luci-theme-material: fix loading view on href X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=refs%2Fpull%2F2583%2Fhead;p=oweals%2Fluci.git luci-theme-material: fix loading view on href After opening an external hyperlink in a new browser tab, LuCI hangs in the load screen. This commit will fix this issue. Signed-off-by: Florian Eckert --- diff --git a/themes/luci-theme-material/htdocs/luci-static/material/js/script.js b/themes/luci-theme-material/htdocs/luci-static/material/js/script.js index 3c25ed712..db9c99e11 100755 --- a/themes/luci-theme-material/htdocs/luci-static/material/js/script.js +++ b/themes/luci-theme-material/htdocs/luci-static/material/js/script.js @@ -131,24 +131,6 @@ $(".cbi-button-up").val(""); $(".cbi-button-down").val(""); - - /** - * hook other "A Label" and add hash to it. - */ - $("#maincontent > .container").find("a").each(function () { - var that = $(this); - var onclick = that.attr("onclick"); - if (onclick == undefined || onclick == "") { - that.click(function () { - var href = that.attr("href"); - if (href.indexOf("#") == -1) { - $(".main > .loading").fadeIn("fast"); - return true; - } - }); - } - }); - /** * Sidebar expand */