diff options
Diffstat (limited to 'src/js/app.js')
-rw-r--r-- | src/js/app.js | 13 |
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 |