1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-20 13:27:10 +00:00
Radarr/UI/Settings/General/GeneralSettingsModel.js

20 lines
533 B
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
2013-06-19 01:02:23 +00:00
define(['app', 'backbone', 'Mixins/AsChangeTrackingModel'], function (App, Backbone, AsChangeTrackingModel) {
var model = Backbone.Model.extend({
url: App.Constants.ApiRoot + '/settings/host',
initialize: function () {
this.on('change', function () {
this.isSaved = false;
}, this);
this.on('sync', function () {
this.isSaved = true;
}, this);
}
});
2013-06-19 01:02:23 +00:00
return AsChangeTrackingModel.call(model);
});