Add console logging

This commit is contained in:
George Lacey 2022-04-06 13:26:20 +01:00
parent 0515ff91fc
commit 8e648a0a93

View File

@ -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);
})
});