Fix for incorrect reloading URL

pull/222/head
Louis Vézina 6 years ago
parent 376ee719fb
commit fb2860396a

@ -194,9 +194,9 @@
function ping() {
$.ajax({
url: protocol + '://' + public_ip + ':{{port}}{{base_url}}',
url: protocol + '//' + public_ip + ':{{port}}{{base_url}}',
success: function(result) {
window.location.href= protocol + '://' + public_ip + ':{{port}}{{base_url}}';
window.location.href= protocol + '//' + public_ip + ':{{port}}{{base_url}}';
}
});
}

@ -250,9 +250,9 @@
function ping() {
$.ajax({
url: protocol + '://' + public_ip + ':{{port}}{{base_url}}',
url: protocol + '//' + public_ip + ':{{port}}{{base_url}}',
success: function(result) {
window.location.href= protocol + '://' + public_ip + ':{{port}}{{base_url}}';
window.location.href= protocol + '//' + public_ip + ':{{port}}{{base_url}}';
}
});
}

Loading…
Cancel
Save