From e77430d8bb520b7ea588ee9902d59cf963f4db6f Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Fri, 11 Jan 2019 10:01:37 +0100 Subject: [PATCH] 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 --- .../htdocs/luci-static/material/js/script.js | 18 ------------------ 1 file changed, 18 deletions(-) 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 */ -- 2.25.1