Removed jQuery UI selectable, using custom select boxes now. Cutoff dropbox is dynamic (based on selected qualities).

This commit is contained in:
Mark McDowall 2011-05-29 14:25:00 -07:00
parent 556d5d9fb3
commit 803ad8ca91
3 changed files with 99 additions and 105 deletions

View file

@ -472,8 +472,8 @@ namespace NzbDrone.Web.Controllers
profile.Allowed = new List<QualityTypes>();
//Remove the extra comma from the end and replace double commas with a single one (the Javascript gets a little crazy)
profile.AllowedString = profile.AllowedString.Replace(",,", ",").Trim(',');
//Remove the extra comma from the end
profile.AllowedString = profile.AllowedString.Trim(',');
foreach (var quality in profile.AllowedString.Split(','))
{