Fixed: Fixed styling for add series dropdown

Fixed: Adding a series is now blocked unless a valid root folder is provided
This commit is contained in:
kay.one 2012-02-26 19:25:57 -08:00
parent a4c433c5b2
commit 9669869c9b
6 changed files with 14 additions and 23 deletions

View file

@ -49,14 +49,6 @@ namespace NzbDrone.Web.Controllers
_seriesProvider = seriesProvider;
}
public JsonResult TestResults(string q)
{
var results = new List<TvDbSearchResultModel>();
results.Add(new TvDbSearchResultModel { Id = 1, Title = "30 Rock", FirstAired = DateTime.Today.ToShortDateString() });
results.Add(new TvDbSearchResultModel { Id = 2, Title = "The Office", FirstAired = DateTime.Today.AddDays(-1).ToShortDateString() });
return Json(results, JsonRequestBehavior.AllowGet);
}
public ActionResult Index()
{