redirect to url parameter.

This commit is contained in:
Stefan Midjich 2016-12-07 14:17:08 +01:00
parent 14f7302f7c
commit 16efbc89c0
1 changed files with 18 additions and 1 deletions

View File

@ -5,13 +5,30 @@
var debug = true;
var getUrlParameter = function getUrlParameter(sParam) {
var sPageURL = decodeURIComponent(window.location.search.substring(1)),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : sParameterName[1];
}
}
};
// This function ensures the user gets redirect to the correct destination once
// all jobs have succeeded in the portal software.
function do_success() {
console.log('success: '+window.location);
var url = getUrlParameter('url');
// Do something like refresh the window or go to another URL.
window.location = window.href;
window.location = url;
location.reload(true);
}