Browse Source

setTimeout correction

master
Pascal Gloor 5 years ago
parent
commit
1b537a710c
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      www/js/autodoc.js

+ 2
- 2
www/js/autodoc.js View File

@@ -240,7 +240,7 @@ function upload_handler() {
}
}
}
setTimeout("upload_handler", 1000);
setTimeout(function() { upload_handler(); }, 1000);
}

function upload_read_event(e) {
@@ -318,5 +318,5 @@ function upload_status() {
}
});
setTimeout("upload_status", 100);
setTimeout(function() { upload_status(); }, 100);
}

Loading…
Cancel
Save