mirror of https://github.com/Sonarr/Sonarr
30 lines
613 B
JavaScript
30 lines
613 B
JavaScript
|
'use strict';
|
|||
|
|
|||
|
define([
|
|||
|
'app', 'Settings/SettingsModel'
|
|||
|
|
|||
|
], function () {
|
|||
|
|
|||
|
NzbDrone.Settings.System.SystemView = Backbone.Marionette.ItemView.extend({
|
|||
|
template: 'Settings/System/SystemTemplate',
|
|||
|
|
|||
|
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!');
|
|||
|
}
|
|||
|
});
|
|||
|
});
|