Rearrange top of file for easier config
This commit is contained in:
parent
037190bb9d
commit
223170c5f1
13
client.js
13
client.js
@ -1,8 +1,4 @@
|
|||||||
let stations = {};
|
// null here means just use the original callsign
|
||||||
|
|
||||||
let messages = [];
|
|
||||||
|
|
||||||
const timeoutLength = 20 * 60 * 1000; // 20 Minutes
|
|
||||||
const trackedStations = {
|
const trackedStations = {
|
||||||
// Digis/iGates
|
// Digis/iGates
|
||||||
"W1FN-1": null,
|
"W1FN-1": null,
|
||||||
@ -27,8 +23,15 @@ const trackedStations = {
|
|||||||
"KC1GDW-14": "Something (panel van thing)"
|
"KC1GDW-14": "Something (panel van thing)"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const timeoutLength = 20 * 60 * 1000; // 20 Minutes
|
||||||
const lowVoltage = 11.9;
|
const lowVoltage = 11.9;
|
||||||
|
|
||||||
|
|
||||||
|
///////// End of Config /////////
|
||||||
|
|
||||||
|
let stations = {};
|
||||||
|
let messages = [];
|
||||||
|
|
||||||
if (Notification.permission !== "granted") {
|
if (Notification.permission !== "granted") {
|
||||||
Notification.requestPermission(permission => {
|
Notification.requestPermission(permission => {
|
||||||
if (permission === "granted") {
|
if (permission === "granted") {
|
||||||
|
Loading…
Reference in New Issue
Block a user