mirror of
https://codeberg.org/prof_x_pvt_ltd/captive.whump.shanti-portal
synced 2024-08-14 22:46:42 +00:00
trying to relocate UA on success.
This commit is contained in:
parent
35a49c57ae
commit
2c58ddf3a9
1 changed files with 8 additions and 1 deletions
|
@ -10,7 +10,8 @@ var debug = true;
|
|||
function do_success() {
|
||||
console.log('success: '+window.location);
|
||||
// Do something like refresh the window or go to another URL.
|
||||
location.reload();
|
||||
window.location = window.href;
|
||||
location.reload(true);
|
||||
}
|
||||
|
||||
// Show an error to the user
|
||||
|
@ -62,6 +63,12 @@ function poll_jobs(data) {
|
|||
clearTimeout(timer);
|
||||
return;
|
||||
}
|
||||
|
||||
if(job_result.is_failed) {
|
||||
console.log('Job failed: ', job_result.id);
|
||||
reject(job_result);
|
||||
clearTimeout(timer);
|
||||
return;
|
||||
});
|
||||
|
||||
ajaxReq.fail(function(XMLHttpRequest, textStatus, errorThrown) {
|
||||
|
|
Loading…
Reference in a new issue