Bugfixes
This commit is contained in:
parent
1a0c50653f
commit
abbceee88d
@ -56,7 +56,7 @@ async function parseTime(string){
|
|||||||
break
|
break
|
||||||
case 'On time':
|
case 'On time':
|
||||||
output = 'RT'
|
output = 'RT'
|
||||||
change = 'righttime'
|
change = ''
|
||||||
break
|
break
|
||||||
case '':
|
case '':
|
||||||
output = '-'
|
output = '-'
|
||||||
@ -233,7 +233,7 @@ async function singleCall(data) {
|
|||||||
time = await parseTime(data.at)
|
time = await parseTime(data.at)
|
||||||
}
|
}
|
||||||
return `<tr>
|
return `<tr>
|
||||||
<td class="detail-name detail-table-content"><a href="${link}>"${data.locationName}</a></td>
|
<td class="detail-name detail-table-content"><a href="${link}">${data.locationName}</a></td>
|
||||||
<td class="detail-table-content">${data.st}</td>
|
<td class="detail-table-content">${data.st}</td>
|
||||||
<td class="detail-table-content ${time.changed}">${time.data}</td>
|
<td class="detail-table-content ${time.changed}">${time.data}</td>
|
||||||
</tr>`
|
</tr>`
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* eslint-disable no-unused-vars */
|
/* eslint-disable no-unused-vars */
|
||||||
/* All Page Init */
|
/* All Page Init */
|
||||||
const version = '2.0.3'
|
const version = '2.0.4'
|
||||||
|
|
||||||
/* Feature Detectors */
|
/* Feature Detectors */
|
||||||
|
|
||||||
|
@ -315,9 +315,6 @@ caption{
|
|||||||
.cancelled {
|
.cancelled {
|
||||||
animation: pulse-cancel 1.5s linear infinite;
|
animation: pulse-cancel 1.5s linear infinite;
|
||||||
}
|
}
|
||||||
.righttime {
|
|
||||||
color: lawngreen;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Footer: */
|
/* Footer: */
|
||||||
#footer {
|
#footer {
|
||||||
|
2
sw.js
2
sw.js
@ -1,6 +1,6 @@
|
|||||||
/* Service Worker */
|
/* Service Worker */
|
||||||
|
|
||||||
const swVersion = '2.0.3-20230508'
|
const swVersion = '2.0.4-20230508'
|
||||||
const cacheName = `owlboard-${swVersion}`
|
const cacheName = `owlboard-${swVersion}`
|
||||||
const cacheIDs = [cacheName]
|
const cacheIDs = [cacheName]
|
||||||
let staticCache = [
|
let staticCache = [
|
||||||
|
Reference in New Issue
Block a user