Ajax reloading incorrectly when searching from wanted page

pull/26/head
morpheus65535 7 years ago
parent 5bfdc3ae34
commit 94907b31d9

@ -151,16 +151,14 @@
sonarrSeriesId: $(this).attr("data-sonarrSeriesId"),
sonarrEpisodeId: $(this).attr("data-sonarrEpisodeId")
};
$('#loader').addClass('active');
$.ajax({
url: "{{base_url}}get_subtitle",
type: "POST",
dataType: "json",
data: values
});
$('#loader').addClass('active');
}).always(function () {
window.location.reload();
});
})
$(document).ajaxStop(function(){
window.location.reload();
});
</script>
Loading…
Cancel
Save