1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

last used quality profile is now used as default

This commit is contained in:
kay.one
2013-05-27 22:40:58 -07:00
parent 465dc725c8
commit e4e6bcae1d
16 changed files with 70 additions and 66 deletions
@@ -0,0 +1,10 @@
'use strict';
define(['app', 'Quality/QualityProfileCollection'], function (app, qualityProfiles) {
Handlebars.registerHelper('qualityProfileSelection', function () {
var templateFunction = Marionette.TemplateCache.get('Quality/QualityProfileSelectionTemplate');
return new Handlebars.SafeString(templateFunction(qualityProfiles.toJSON()));
});
});