aboutsummaryrefslogtreecommitdiff
path: root/src/js/app.js
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-11-11 04:31:53 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-11-11 04:31:53 +0200
commit8c8ae9cce8c0f992fe6701a203a55870772808d8 (patch)
treed8b157f5ac42995f1dbd6b5ae5bd1ed65a5df748 /src/js/app.js
parent6218656716dafccbdd8fb905d027471dfaf046db (diff)
downloadarching-kaos-web-ui-8c8ae9cce8c0f992fe6701a203a55870772808d8.tar.gz
arching-kaos-web-ui-8c8ae9cce8c0f992fe6701a203a55870772808d8.tar.bz2
arching-kaos-web-ui-8c8ae9cce8c0f992fe6701a203a55870772808d8.zip
Added Radio
Diffstat (limited to 'src/js/app.js')
-rw-r--r--src/js/app.js13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/js/app.js b/src/js/app.js
index 5703def..f8fca5a 100644
--- a/src/js/app.js
+++ b/src/js/app.js
@@ -1,4 +1,10 @@
-/*
+/* Arching Kaos Web UI App Launcher
+ *
+ * Kaotisk Hund - 2024
+ *
+ * @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
+ *
+ *
* Body and pageLayout resizer to device's resolution.
*
* TODO: Figure out why it doesn't work in fullscreen App mode (android)
@@ -30,12 +36,12 @@ progressPlaceholder.value = '0';
progressPlaceholder.max++;
-if ( activeSettings.scanStellar )
+if ( activeSettings.stellar.scan )
{
scanStellarNetworkForPeers();
}
-if ( activeSettings.ringLocalBell )
+if ( activeSettings.ak.scan )
{
ringlocalbell();
setInterval(ringlocalbell, 10*60*1000);
@@ -45,3 +51,4 @@ if ( activeSettings.ringLocalBell )
// setInterval(scanStellarNetworkForPeers, 60000);
// vim: tabstop=4 shiftwidth=4 expandtab softtabstop=4
+// @license-end