url handling and nicer button deactivation

This commit is contained in:
Stefan Midjich 2016-12-08 14:25:37 +01:00
parent 18e6ea66a7
commit fb5d7b1261

View file

@ -5,19 +5,36 @@
var debug = true; 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 // This function ensures the user gets redirect to the correct destination once
// all jobs have succeeded in the portal software. // all jobs have succeeded in the portal software.
function do_success() { function do_success() {
console.log('success: '+window.location); var url = getUrlParameters('url');
console.log('success: '+url);
// Do something like refresh the window or go to another URL. // Do something like refresh the window or go to another URL.
window.location = window.href; location.replace(url);
location.reload(true);
} }
// Show an error to the user // Show an error to the user
function do_error(message) { function do_error(message) {
console.log('failure: '+message); console.log('failure: '+message);
$('#approveButton').prop('disabled', false);
$('#error-box').show(); $('#error-box').show();
$('#form-row').hide(); $('#form-row').hide();