1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

Specific Subtitle tags (such as nlsub) can now be whitelisted and will be downloaded.

Fixes #540 and fixes a lot of other requests.
This commit is contained in:
Leonardo Galli
2017-04-10 11:41:08 +02:00
parent 7066b078ab
commit c17deb7d92
6 changed files with 49 additions and 3 deletions
@@ -1,12 +1,27 @@
var Marionette = require('marionette');
var AsModelBoundView = require('../../../Mixins/AsModelBoundView');
var AsValidatedView = require('../../../Mixins/AsValidatedView');
require('../../../Mixins/TagInput');
require('bootstrap');
require('bootstrap.tagsinput');
var view = Marionette.ItemView.extend({
template : 'Settings/Indexers/Options/IndexerOptionsViewTemplate'
template : 'Settings/Indexers/Options/IndexerOptionsViewTemplate',
ui : {
hcwhitelist : '.x-hcwhitelist',
},
onRender : function() {
this.ui.hcwhitelist.tagsinput({
trimValue : true,
allowDuplicates: true,
tagClass : 'label label-success'
});
},
});
AsModelBoundView.call(view);
AsValidatedView.call(view);
module.exports = view;
module.exports = view;