TopSlider added for local series searching!

Should be easy to add others (would want to have it close other open ones, I think).
This commit is contained in:
Mark McDowall 2011-10-20 16:36:47 -07:00
parent 08804208cf
commit 745d9d9355
13 changed files with 241 additions and 78 deletions

View file

@ -25,5 +25,11 @@ namespace NzbDrone.Web.Controllers
ViewData["RssTimer"] = _jobProvider.NextScheduledRun(typeof(RssSyncJob)).ToString("yyyyMMddHHmmss");
return PartialView();
}
[ChildActionOnly]
public ActionResult LocalSearch()
{
return PartialView();
}
}
}