mirror of https://github.com/morpheus65535/bazarr
Ajax reloading incorrectly when searching from wanted page
This commit is contained in:
parent
5bfdc3ae34
commit
94907b31d9
|
@ -151,16 +151,14 @@
|
||||||
sonarrSeriesId: $(this).attr("data-sonarrSeriesId"),
|
sonarrSeriesId: $(this).attr("data-sonarrSeriesId"),
|
||||||
sonarrEpisodeId: $(this).attr("data-sonarrEpisodeId")
|
sonarrEpisodeId: $(this).attr("data-sonarrEpisodeId")
|
||||||
};
|
};
|
||||||
|
$('#loader').addClass('active');
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: "{{base_url}}get_subtitle",
|
url: "{{base_url}}get_subtitle",
|
||||||
type: "POST",
|
type: "POST",
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
data: values
|
data: values
|
||||||
});
|
}).always(function () {
|
||||||
$('#loader').addClass('active');
|
window.location.reload();
|
||||||
|
});
|
||||||
})
|
})
|
||||||
|
|
||||||
$(document).ajaxStop(function(){
|
|
||||||
window.location.reload();
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
Loading…
Reference in New Issue