diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-03 16:09:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-01-03 16:09:13 +0000 |
commit | fdf6f46f9c548c8e3748f32840d3af2cb3335271 (patch) | |
tree | 6db479ec0c22d98a99e07b9f0a5a14e24a303a89 /src/templates/workflow/confirm.html | |
parent | b729dd4e21e90fe6f83b31cabdcc9f74757c70bd (diff) | |
parent | f27e25c199c3c5c9433463732b776ae9b4357cf8 (diff) |
Merge "Implement Segmented Workflows"
Diffstat (limited to 'src/templates/workflow/confirm.html')
-rw-r--r-- | src/templates/workflow/confirm.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/templates/workflow/confirm.html b/src/templates/workflow/confirm.html index 29b90c8..2510204 100644 --- a/src/templates/workflow/confirm.html +++ b/src/templates/workflow/confirm.html @@ -66,7 +66,9 @@ req.open("POST", "/wf/workflow/finish/", false); req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); req.onerror = function() { alert("problem with cleaning up session"); } - req.onreadystatechange = function() { if(req.readyState === 4 ) { parent.redirect_root(); } } + req.onreadystatechange = function() { if(req.readyState === 4 ) { + window.top.refresh_iframe(); + }} req.send(formData); } |