Compare commits
3 Commits
279ef6d807
...
cb4dcc113f
Author | SHA1 | Date | |
---|---|---|---|
|
cb4dcc113f | ||
|
0e31eb3cb0 | ||
|
d22edbdd8a |
@ -1,11 +1,11 @@
|
|||||||
// animation speeds cause why not
|
// animation speeds cause why not
|
||||||
const TYPING_SPEED = 60;
|
const TYPING_SPEED = 50;
|
||||||
const ERASE_SPEED = 80;
|
const ERASE_SPEED = 70;
|
||||||
const STATUS_UPDATE_INTERVAL = 60000; // 1min updates
|
const STATUS_UPDATE_INTERVAL = 60000; // 1min updates
|
||||||
const TIME_UPDATE_INTERVAL = 1; // 1ms updates (yeah its bad)
|
const TIME_UPDATE_INTERVAL = 1; // 1ms updates (yeah its bad)
|
||||||
|
|
||||||
// status warning stuff
|
// status warning stuff
|
||||||
const LATENCY_WARNING_THRESHOLD = 500000;
|
const LATENCY_WARNING_THRESHOLD = 300000;
|
||||||
|
|
||||||
// lazy group name mapping
|
// lazy group name mapping
|
||||||
const GROUP_NAMES = {
|
const GROUP_NAMES = {
|
||||||
@ -323,20 +323,20 @@ document.querySelectorAll(".nav-icon").forEach((icon) => {
|
|||||||
// sets everything up when page loads
|
// sets everything up when page loads
|
||||||
// starts all the intervals and stuff
|
// starts all the intervals and stuff
|
||||||
document.addEventListener("DOMContentLoaded", () => {
|
document.addEventListener("DOMContentLoaded", () => {
|
||||||
|
updateClientInfo();
|
||||||
|
|
||||||
updateTime();
|
updateTime();
|
||||||
setInterval(updateTime, TIME_UPDATE_INTERVAL);
|
setInterval(updateTime, TIME_UPDATE_INTERVAL);
|
||||||
|
|
||||||
updateStatus();
|
updateStatus();
|
||||||
setInterval(updateStatus, STATUS_UPDATE_INTERVAL);
|
setInterval(updateStatus, STATUS_UPDATE_INTERVAL);
|
||||||
|
|
||||||
updateClientInfo();
|
|
||||||
|
|
||||||
const activeNavIcon = document.querySelector(".nav-icon.active");
|
const activeNavIcon = document.querySelector(".nav-icon.active");
|
||||||
if (activeNavIcon) {
|
if (activeNavIcon) {
|
||||||
const label = activeNavIcon.querySelector(".nav-label");
|
const label = activeNavIcon.querySelector(".nav-label");
|
||||||
if (label) writeoutnavlabel(label);
|
if (label) writeoutnavlabel(label);
|
||||||
}
|
}
|
||||||
|
console.log("Finished init");
|
||||||
// fancy console log for style points
|
// fancy console log for style points
|
||||||
console.log(
|
console.log(
|
||||||
"%cELIA.NETWORK",
|
"%cELIA.NETWORK",
|
||||||
|
Loading…
Reference in New Issue
Block a user