sonarr-repo-only/UI/Settings/General/GeneralSettingsModel.js

20 lines
533 B
JavaScript
Raw Normal View History

"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);
});