Quality Profile now uses jQuery UI Selectable instead of Sortable.

This commit is contained in:
Mark McDowall 2011-05-29 01:59:25 -07:00
commit 556d5d9fb3
7 changed files with 147 additions and 100 deletions

View file

@ -17,6 +17,6 @@ namespace NzbDrone.Web.Models
[Description("Should NzbDrone download proper releases (to replace non-proper files)?")]
public bool DownloadPropers { get; set; }
public SelectList SelectList { get; set; }
public SelectList QualityProfileSelectList { get; set; }
}
}

View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Web.Models
{
public class QualityTypeModel
{
public int Id { get; set; }
public QualityTypes Name { get; set; }
}
}