You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
610 B
21 lines
610 B
12 years ago
|
NzbDrone.Series.Index.Table.Row = Backgrid.Row.extend({
|
||
|
events: {
|
||
|
'click .x-edit' : 'editSeries',
|
||
|
'click .x-remove': 'removeSeries'
|
||
|
},
|
||
|
|
||
|
editSeries: function () {
|
||
|
var view = new NzbDrone.Series.Edit.EditSeriesView({ model: this.model});
|
||
|
|
||
|
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
|
||
|
view: view
|
||
|
});
|
||
|
},
|
||
|
|
||
|
removeSeries: function () {
|
||
|
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
|
||
|
NzbDrone.vent.trigger(NzbDrone.Events.OpenModalDialog, {
|
||
|
view: view
|
||
|
});
|
||
|
}
|
||
|
});
|