1
0

$() func was made into an arrow func.

This commit is contained in:
Alexander Andreev 2023-08-22 16:35:43 +04:00
parent bc9437cd2c
commit 28c2cf21a0
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -1,4 +1,4 @@
function $(id) { return document.getElementById(id); }
const $ = id => document.getElementById(id);
function updateRadioStatus() {
fetch("/status")