You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
960 B
37 lines
960 B
"use strict";
|
|
define(['app',
|
|
'backbone.deepmodel',
|
|
'Mixins/AsChangeTrackingModel',
|
|
'Shared/Messenger'], function (App, DeepModel, AsChangeTrackingModel, Messenger) {
|
|
var model = DeepModel.DeepModel.extend({
|
|
|
|
initialize: function () {
|
|
|
|
// App.vent.on(App.Commands.SaveSettings, this.saveSettings, this);
|
|
this.listenTo(App.vent, App.Commands.SaveSettings, this.saveSettings);
|
|
},
|
|
|
|
saveSettings: function () {
|
|
|
|
if (!this.isSaved) {
|
|
|
|
var savePromise = this.save();
|
|
|
|
Messenger.monitor(
|
|
{
|
|
promise : savePromise,
|
|
successMessage: this.successMessage,
|
|
errorMessage : this.errorMessage
|
|
});
|
|
|
|
return savePromise;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
});
|
|
|
|
return AsChangeTrackingModel.call(model);
|
|
});
|