summaryrefslogtreecommitdiffstats
path: root/modules-available/main
diff options
context:
space:
mode:
authorSimon Rettberg2019-04-01 17:38:04 +0200
committerSimon Rettberg2019-04-01 17:38:04 +0200
commitb63ccc136cdbb128f5dc6272497e7c9e32ff449c (patch)
treee454f5f640e740fb540a84958155fab1e36b8a56 /modules-available/main
parent[serversetup-bwlp-ipxe] imgfree on localboot (diff)
downloadslx-admin-b63ccc136cdbb128f5dc6272497e7c9e32ff449c.tar.gz
slx-admin-b63ccc136cdbb128f5dc6272497e7c9e32ff449c.tar.xz
slx-admin-b63ccc136cdbb128f5dc6272497e7c9e32ff449c.zip
[main] Incorporate taskmanager callbacks into slx-fixes.js
Diffstat (limited to 'modules-available/main')
-rw-r--r--modules-available/main/templates/tm-callback-trigger.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/modules-available/main/templates/tm-callback-trigger.html b/modules-available/main/templates/tm-callback-trigger.html
deleted file mode 100644
index cd03a1fe..00000000
--- a/modules-available/main/templates/tm-callback-trigger.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<script type="text/javascript">
- var slxCbCooldown = 0;
- function slxCheckCallbacks() {
- $.post('api.php?do=cb', { token: TOKEN }, function(data) {
- if ( data.indexOf('True') >= 0 ) {
- slxCbCooldown = 0;
- } else {
- slxCbCooldown++;
- }
- if (slxCbCooldown < 4)
- setTimeout(slxCheckCallbacks, (slxCbCooldown + 1) * 1500);
- }, 'text');
- }
- document.addEventListener("DOMContentLoaded", slxCheckCallbacks, false);
-</script> \ No newline at end of file