diff --git a/clock.js b/clock.js
index 98cc7eb..875acf5 100644
--- a/clock.js
+++ b/clock.js
@@ -18,14 +18,12 @@ function startTime(){
+ current_time.toLocaleString('en-US',
{timeZone: current_tz,
hourCycle:'h24',
- timeStyle:'long',
hour: '2-digit',
minute:'2-digit',
second:'2-digit',
timeZoneName:'short'});
document.getElementById('time_body').innerHTML = current_time.toLocaleString('en-EN' ,{
timeZone: current_tz,
- dateStyle:'long',
hourCycle:'h24',
weekday:'short',
month:'short',
@@ -37,7 +35,6 @@ function startTime(){
if(original_tz){//Test if there is a non-null value for original_tz. If True then the part of the page this pertains to is being displayed.
document.getElementById('time_original').innerHTML = current_time.toLocaleString('en-EN' ,{
timeZone: original_tz,
- dateStyle:'long',
hourCycle:'h24',
weekday:'short',
month:'short',
diff --git a/clock.php b/clock.php
index f1552b4..6ae0eb7 100644
--- a/clock.php
+++ b/clock.php
@@ -109,14 +109,13 @@
-