From d8c68fe9cc59f667478bb763cf690d8f771afa59 Mon Sep 17 00:00:00 2001 From: Louie S Date: Mon, 3 Apr 2023 20:04:52 -0700 Subject: Fix refresh issue --- frontend/index.html | 7 ------- frontend/script.js | 20 ++++++-------------- 2 files changed, 6 insertions(+), 21 deletions(-) (limited to 'frontend') diff --git a/frontend/index.html b/frontend/index.html index 4036645..4828dd9 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -16,13 +16,6 @@ - - - - - diff --git a/frontend/script.js b/frontend/script.js index f40d70b..90dcb9a 100644 --- a/frontend/script.js +++ b/frontend/script.js @@ -1,35 +1,26 @@ const endpoint = "http://127.0.0.1:8080/endpoints" +let i = 0; -console.log("hello"); function set_embed_page(url) { document.getElementById("docset-page").src = url; } function populateSearchBar(docset_json) { - console.log(docset_json); + //console.log(docset_json); + ++i; + console.log(i); // Add to search bar document.getElementById("searchbar").getElementsByTagName("tbody")[0].innerHTML += "" + "" + - "" + "" + ""; - - // Add onclick event - /* - document.getElementById("docset-" + docset_json["CFBundleIdentifier"] + "-parent").addEventListener("click", function(){ - set_embed_page(docset_json["docset_root"]); - }); - */ } -document.getElementById("docset-example-parent").addEventListener("click", function() { - set_embed_page("https://example.com"); -}); - let xhttp = new XMLHttpRequest(); xhttp.open("GET", endpoint + "/get_plist.py"); @@ -44,5 +35,6 @@ xhttp.onload = function(){ //populateSearchBar(json_response["docsets"][0]); json_response["docsets"].forEach(populateSearchBar); + delete json_response } xhttp.send(); -- cgit