From 93340f7d53b351fe46b701c6ac38aece4fbec342 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 15 Jun 2011 23:18:19 -0700 Subject: [PATCH] Added AJAX wheel for Refresh Root Dirs, so you can tell its working now. --- NzbDrone.Web/Views/AddSeries/Index.cshtml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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