summaryrefslogtreecommitdiffstats
path: root/script
diff options
context:
space:
mode:
authorSimon Rettberg2019-04-01 17:38:04 +0200
committerSimon Rettberg2019-04-01 17:38:04 +0200
commitb63ccc136cdbb128f5dc6272497e7c9e32ff449c (patch)
treee454f5f640e740fb540a84958155fab1e36b8a56 /script
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 'script')
-rw-r--r--script/slx-fixes.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/script/slx-fixes.js b/script/slx-fixes.js
index 925ac44f..29f52449 100644
--- a/script/slx-fixes.js
+++ b/script/slx-fixes.js
@@ -87,3 +87,20 @@ $(document).ready(function() {
};
$('button[data-confirm]').click($function);
});
+
+// Taskmanager callbacks for running tasks
+$(document).ready(function() {
+ var slxCbCooldown = 0;
+ function slxCheckCallbacks() {
+ $.post('api.php?do=cb', { token: TOKEN }, function(data) {
+ if ( data.indexOf('True') >= 0 ) {
+ slxCbCooldown += 1;
+ } else {
+ slxCbCooldown += 10;
+ }
+ if (slxCbCooldown < 30)
+ setTimeout(slxCheckCallbacks, slxCbCooldown * 1000);
+ }, 'text');
+ }
+ slxCheckCallbacks();
+});