diff options
author | RaindropsSys <contact@minteck.org> | 2023-03-26 22:49:33 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-03-26 22:49:33 +0200 |
commit | 6ab243c12f2514cd0f40e80504223664755a6da4 (patch) | |
tree | 48e873795fcf46820088a34dd22da6dd2d56b96f /includes/components/pleasure.inc | |
parent | bbf526b19c9831349a3b836f83b63363e6b33609 (diff) | |
download | pluralconnect-6ab243c12f2514cd0f40e80504223664755a6da4.tar.gz pluralconnect-6ab243c12f2514cd0f40e80504223664755a6da4.tar.bz2 pluralconnect-6ab243c12f2514cd0f40e80504223664755a6da4.zip |
Updated 3 files (automated)
Diffstat (limited to 'includes/components/pleasure.inc')
-rw-r--r-- | includes/components/pleasure.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/components/pleasure.inc b/includes/components/pleasure.inc index 02ce759..40bf7fd 100644 --- a/includes/components/pleasure.inc +++ b/includes/components/pleasure.inc @@ -163,22 +163,22 @@ if (!isset($school[$day])) { document.getElementById("next-notification").innerText = "now"; if (document.getElementById("fake-requests").checked) { window.alertIntervalCounter = window.alertIntervalAmount; - document.getElementById("next-notification").innerText = window.alertIntervalAmount + " seconds"; + document.getElementById("next-notification").innerText = "in " + window.alertIntervalAmount + " seconds"; } else { window.fetch("/api/pleasure").then(() => { window.alertIntervalCounter = window.alertIntervalAmount; - document.getElementById("next-notification").innerText = window.alertIntervalAmount + " seconds"; + document.getElementById("next-notification").innerText = "in " + window.alertIntervalAmount + " seconds"; }) } } else { document.getElementById("next-notification").innerText = "now"; if (document.getElementById("fake-requests").checked) { window.alertIntervalCounter = window.alertIntervalAmount; - document.getElementById("next-notification").innerText = window.alertIntervalAmount + " seconds"; + document.getElementById("next-notification").innerText = "in " + window.alertIntervalAmount + " seconds"; } else { window.fetch("/api/pleasure-real").then(() => { window.alertIntervalCounter = window.alertIntervalAmount; - document.getElementById("next-notification").innerText = window.alertIntervalAmount + " seconds"; + document.getElementById("next-notification").innerText = "in " + window.alertIntervalAmount + " seconds"; }) } } @@ -197,7 +197,7 @@ if (!isset($school[$day])) { if (window.alertIntervalCounter === 0) { sendNotification(); } else if (window.alertIntervalCounter > -1) { - document.getElementById("next-notification").innerText = window.alertIntervalCounter + " second" + (window.alertIntervalCounter > 1 ? "s" : ""); + document.getElementById("next-notification").innerText = "in " + window.alertIntervalCounter + " second" + (window.alertIntervalCounter > 1 ? "s" : ""); } }, 1000); } |