diff --git a/borgweb/borg/static/borg/js/index.js b/borgweb/borg/static/borg/js/index.js index c2a0c5d..7fbaa01 100644 --- a/borgweb/borg/static/borg/js/index.js +++ b/borgweb/borg/static/borg/js/index.js @@ -25,7 +25,9 @@ window.addEventListener("DOMContentLoaded", function () { $.getJSON(`/repo_list.json`, function (repo_list) { repo_list.labels.forEach(function (repo_label) { + console.log("got list") $.getJSON(`/repo/${repo_label}.json`, function (repo_json) { + console.log(`got ${repo_label}`) inflateRepo(repo_json, repo_label, template, container); }) });