MMDVMHost-Websocketboard/html/js/config.js
Kim Huebel ff474fa323 Now you can chose to display the timestamps in local time of the client
If you want to show times in UTC set useClientTimezone in config.js = 0 else
the timestamps and headers in the tables will be displayed in the local timezone
of the client-system. So if you are showing it in Japan with your local time there
you will get other results than showing it in New York.
2020-12-15 10:41:49 +00:00

26 lines
724 B
JavaScript

// 1 = show link to QRZ.com, 0 = off
var qrz = 1;
// 1 = enable debug in javascript-console, 0 = 0ff
var debug = 0;
// Set messagecounters for different badge-colors
var warnlevel = 200;
var emergencylevel = 500;
// 1 = show tab, 0 = suppress it
var showCurrTXTab = 1;
var showLastHeardTab = 1;
var showLocalHeadTab = 1;
var showInQSOTab = 1;
var showDAPNETMessagesTab = 1;
var showSysInfoTab = 1;
var showAboutTab = 1;
// default-tab to show
// chose from following list: CurrTXTab, LastHeardTab, LocalHeadTab, InQSOTab, DAPNETMessagesTab, SysInfoTab, AboutTab
var defaultTab = "LastHeardTab";
// Set displayed timezone and timestamp to timezone of browser if 1, else use UTC for displaying
var useClientTimezone = 1;