let repo = window.location.hash.substring(1); localforage.getItem(repo) .then((val) => { for (var f in val) { let li = $("
  • "); let a = $(""); a.attr("href", `/type.html#${repo}/${f}`); let div = $("
    "); div.text(f); a.append(div); li.append(a); $("#prev-files").append(li); } }) .catch((e) => { throw e; }); $("#form").submit((event) => { event.preventDefault(); let file = $("#file").val(); window.location.href = `/type.html#${repo}/${file}`; }); $("#back").click(() => { window.location.href = "/"; });