Merge branch '81-support-downloading-open-content' of https://github.com/dirtbags/moth into 81-support-downloading-open-content

This commit is contained in:
John Donaldson 2019-11-07 19:36:14 +00:00
commit 9b047e7821
2 changed files with 7 additions and 5 deletions

View File

@ -1,7 +1,8 @@
function pwa_init() {
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register("./sw.js").then(function(reg) {
}).catch(function(err) {
})
.catch(err => {
console.warn("Error while registering service worker", err)
})
} else {

View File

@ -137,7 +137,8 @@ function drawCacheButton(teamId) {
} else {
cacher.style.display = "none"
}
}).catch( ex => {
})
.catch(ex => {
cacher.style.display = "none"
})
}
@ -158,14 +159,14 @@ async function fetchAll(teamId) {
.then( resp => {
if (resp.ok) {
resp.json()
.then( contents => {
.then(contents => {
console.log("Processing manifest")
for (let resource of contents) {
if (resource == "puzzles.json") {
continue
}
fetch(resource)
.then( e => {
.then(e => {
console.log("Fetched " + resource)
})
}
@ -191,7 +192,7 @@ async function fetchAll(teamId) {
url.searchParams.set("points", puzzle[0])
url.searchParams.set("pid", puzzle[1])
requests.push( fetch(url)
.then( e => {
.then(e => {
console.log("Fetched " + url)
}))
}