mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 19:12:38 +01:00
30 lines
645 B
JavaScript
30 lines
645 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'app', 'Settings/SettingsModel'
|
|
|
|
], function () {
|
|
|
|
NzbDrone.Settings.DownloadClient.DownloadClientView = Backbone.Marionette.ItemView.extend({
|
|
template: 'Settings/DownloadClient/DownloadClientTemplate',
|
|
|
|
events: {
|
|
'click .x-save': 'save'
|
|
},
|
|
|
|
initialize: function (options) {
|
|
this.model = options.model;
|
|
},
|
|
|
|
onRender: function () {
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
},
|
|
|
|
|
|
save: function () {
|
|
//Todo: Actually save the model
|
|
alert('Save pressed!');
|
|
}
|
|
});
|
|
});
|