We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the function, you must add: $('tz', t);
Old function clock
function clock(){ d=new Date(); updateTime(); updateDate(); $('player', player); $('agency', agency); $('callsign', callsign); animate=setTimeout(clock,100); };
New function clock
function clock(){ d=new Date(); updateTime(); updateDate(); $('player', player); $('agency', agency); $('tz', t); $('callsign', callsign); animate=setTimeout(clock,100); };
This way, it will work
The text was updated successfully, but these errors were encountered:
I edited the file today to make it a permanent UTC clock. However, I may create other versions that use local time, or multiple files.
Sorry, something went wrong.
No branches or pull requests
In the function, you must add:
$('tz', t);
Old function clock
New function clock
This way, it will work
The text was updated successfully, but these errors were encountered: