mirror of
https://github.com/Retropex/custom-ocean.xyz-dashboard.git
synced 2025-05-12 19:20:45 +02:00
Update BitcoinProgressBar.js
This commit is contained in:
parent
8d40fb83a8
commit
fd412b9f22
@ -673,17 +673,19 @@ const BitcoinMinuteRefresh = (function () {
|
|||||||
console.error("BitcoinMinuteRefresh: Error updating progress bar:", e);
|
console.error("BitcoinMinuteRefresh: Error updating progress bar:", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update the terminal clock
|
* Update the terminal clock
|
||||||
*/
|
*/
|
||||||
function updateClock() {
|
function updateClock() {
|
||||||
try {
|
try {
|
||||||
const now = new Date(Date.now() + (serverTimeOffset || 0));
|
const now = new Date(Date.now() + (serverTimeOffset || 0));
|
||||||
const hours = String(now.getHours()).padStart(2, '0');
|
let hours = now.getHours();
|
||||||
const minutes = String(now.getMinutes()).padStart(2, '0');
|
const minutes = String(now.getMinutes()).padStart(2, '0');
|
||||||
const seconds = String(now.getSeconds()).padStart(2, '0');
|
const seconds = String(now.getSeconds()).padStart(2, '0');
|
||||||
const timeString = `${hours}:${minutes}:${seconds}`;
|
const ampm = hours >= 12 ? 'PM' : 'AM';
|
||||||
|
hours = hours % 12;
|
||||||
|
hours = hours ? hours : 12; // the hour '0' should be '12'
|
||||||
|
const timeString = `${String(hours).padStart(2, '0')}:${minutes}:${seconds} ${ampm}`;
|
||||||
|
|
||||||
// Update both clocks (normal and minimized views)
|
// Update both clocks (normal and minimized views)
|
||||||
const clockElement = document.getElementById('terminal-clock');
|
const clockElement = document.getElementById('terminal-clock');
|
||||||
@ -703,9 +705,6 @@ const BitcoinMinuteRefresh = (function () {
|
|||||||
/**
|
/**
|
||||||
* Update the uptime display
|
* Update the uptime display
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* Update the uptime display
|
|
||||||
*/
|
|
||||||
function updateUptime() {
|
function updateUptime() {
|
||||||
if (serverStartTime) {
|
if (serverStartTime) {
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user