1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 19:12:38 +01:00
Radarr/NzbDrone.Backbone/Settings/DownloadClient/DownloadClientView.js
2013-03-03 16:10:58 -08:00

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!');
}
});
});