Radarr/UI/Settings/General/GeneralView.js

25 lines
789 B
JavaScript
Raw Normal View History

'use strict';
2013-06-19 01:02:23 +00:00
define(['app', 'Mixins/AsModelBoundView'], function (App, AsModelBoundView) {
2013-06-19 01:02:23 +00:00
var view = Backbone.Marionette.ItemView.extend({
template: 'Settings/General/GeneralTemplate',
initialize: function () {
NzbDrone.vent.on(NzbDrone.Commands.SaveSettings, this.saveSettings, this);
},
saveSettings: function () {
if (!this.model.isSaved) {
2013-06-01 00:22:47 +00:00
this.model.save(undefined, NzbDrone.Settings.SyncNotificaiton.callback({
successMessage: 'General Settings saved',
2013-06-19 01:02:23 +00:00
errorMessage : "Failed to save General Settings"
2013-06-01 00:22:47 +00:00
}));
}
}
}
);
2013-06-19 01:02:23 +00:00
return AsModelBoundView.call(view);
});