05.03.2018, 10:31
You can set a fixed redirect like this:
Code:
$(function() {
if (window.history.length > 1) {
$('.btn-home').click(function(e) {
e.preventDefault();
window.location = '/scada-vis/';
});
}
});