From 27710b93245cd4c61480a02f807b442a3aed515d Mon Sep 17 00:00:00 2001 From: Leo Gallucci Date: Wed, 11 Apr 2018 15:27:42 +0200 Subject: [PATCH] jQuery attribute selector value MUST be surrounded by quotes --- notebook/static/tree/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/tree/js/main.js b/notebook/static/tree/js/main.js index 5dcf8d806..27e08d119 100644 --- a/notebook/static/tree/js/main.js +++ b/notebook/static/tree/js/main.js @@ -209,7 +209,7 @@ requirejs([ // load tab if url hash if (window.location.hash) { - $("#tabs").find("a[href=" + window.location.hash + "]").click(); + $("#tabs").find("a[href='" + window.location.hash + "']").click(); } shutdownbutton.activate();