Menus are now custom built, using AJAX loading of links where acceptable.

This commit is contained in:
Mark McDowall 2011-08-05 19:04:35 -07:00
parent 3d784b828d
commit aa82264774
16 changed files with 130 additions and 111 deletions

View file

@ -18,11 +18,11 @@ namespace NzbDrone.Web.Controllers
return View();
}
public ActionResult Clear()
public JsonResult Clear()
{
_logProvider.DeleteAll();
return RedirectToAction("Index");
return new JsonResult { Data = "ok" };
}
[GridAction]