burntascii
burntascii
About
- Username
- burntascii
- Joined
- Visits
- 243
- Last Active
- Roles
- Member
- Thanked
- 5
Comments
-
(Quote) nice, though I'm pretty sure the double conversion into EST was not needed. but hey it works now let's not touch it anymore!
-
(Quote) works great for me!
-
(Quote) https://virbot-timertest.static.domains/test.html results for me: https://imgur.com/a/EeXq535 back to what it was for me: fails on FF and Edge, works on Chrome
-
Chrome and edge is broken now for me too Could the backend just pass the sale start time as milliseconds since epoch and then just distance = new Date(timestampStart + saleDuration - Date.now())? Avoids having to rely on this inconsistent date pars…
-
(Quote) the legendary safari... how do I test this when I don't have a apple device @VirMach here try this ISO compliant date format instead var pst = new Date('2024-01-01T00:00:00-08:00'); var local = new Date('2024-01-01T00:00:00'); @imok you …
-
(Quote) @VirMach here's a lil trick that makes the countdown work on firefox and edge and not just chrome replace this (Image) with this var pst = new Date('01-01-2024 00:00:00 UTC-08:00'); var local = new Date('01-01-2024 00:00:00'); …
-
(Quote) (Image)