diff --git a/NzbDrone.Web/Views/AddSeries/Index.cshtml b/NzbDrone.Web/Views/AddSeries/Index.cshtml
index e47a1fe4e..8fcff4512 100644
--- a/NzbDrone.Web/Views/AddSeries/Index.cshtml
+++ b/NzbDrone.Web/Views/AddSeries/Index.cshtml
@@ -59,6 +59,7 @@
}
+
);
}).Render();
@@ -175,6 +176,10 @@
}
function reloadExistingSeries() {
- $('#existingSeries').load('@Url.Action("AddExisting", "AddSeries")');
+ $('#reloadAjax').show();
+ $('#existingSeries').load('@Url.Action("AddExisting", "AddSeries")',
+ function (responseText, textStatus, XMLHttpRequest) {
+ $('#reloadAjax').hide();
+ });
}
\ No newline at end of file