mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 20:44:00 +02:00
Tags
New: Ability to tag series New: Use tags to control which series use which notification channels
This commit is contained in:
@@ -7,7 +7,8 @@ define(
|
||||
'Mixins/AsModelBoundView',
|
||||
'Mixins/AsValidatedView',
|
||||
'Mixins/AsEditModalView',
|
||||
'Mixins/AutoComplete'
|
||||
'Mixins/AutoComplete',
|
||||
'Mixins/TagInput'
|
||||
], function (vent, Marionette, Profiles, AsModelBoundView, AsValidatedView, AsEditModalView) {
|
||||
|
||||
var view = Marionette.ItemView.extend({
|
||||
@@ -15,7 +16,8 @@ define(
|
||||
|
||||
ui: {
|
||||
profile : '.x-profile',
|
||||
path : '.x-path'
|
||||
path : '.x-path',
|
||||
tags : '.x-tags'
|
||||
},
|
||||
|
||||
events: {
|
||||
@@ -39,6 +41,10 @@ define(
|
||||
|
||||
onRender: function () {
|
||||
this.ui.path.autoComplete('/directories');
|
||||
this.ui.tags.tagInput({
|
||||
model : this.model,
|
||||
property : 'tags'
|
||||
});
|
||||
},
|
||||
|
||||
_removeSeries: function () {
|
||||
|
Reference in New Issue
Block a user