Compare commits
No commits in common. "c9ea188e7eaf96bb796e3bcc4eb6f3ffa690a855" and "e7b58fdd6387079b0e89f4fb5bb46c0af9aa029c" have entirely different histories.
c9ea188e7e
...
e7b58fdd63
2 changed files with 3 additions and 3 deletions
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
v5
|
||||
v4
|
||||
|
|
|
|||
|
|
@ -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…
Add table
Add a link
Reference in a new issue