Compare commits
No commits in common. "c9ea188e7eaf96bb796e3bcc4eb6f3ffa690a855" and "e7b58fdd6387079b0e89f4fb5bb46c0af9aa029c" have entirely different histories.
c9ea188e7e
...
e7b58fdd63
@ -33,7 +33,7 @@ class App {
|
||||
})
|
||||
}//}}}
|
||||
retrieveVersion() {//{{{
|
||||
return fetch('/VERSION', {cache: "no-store"})
|
||||
return fetch('/VERSION')
|
||||
.then(res=>{
|
||||
if(res.ok)
|
||||
return res.text()
|
||||
@ -50,7 +50,7 @@ class App {
|
||||
if(page === null)
|
||||
page = 'start'
|
||||
|
||||
return fetch(`/${page}.yaml`, {cache: "no-store"})
|
||||
return fetch(`/${page}.yaml`)
|
||||
.then(res=>{
|
||||
if(res.ok)
|
||||
return res.text()
|
||||
|
Loading…
Reference in New Issue
Block a user