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.
42 lines
1.0 KiB
42 lines
1.0 KiB
"use strict";
|
|
|
|
define([
|
|
'app',
|
|
'Settings/Indexers/Model'
|
|
|
|
], function () {
|
|
|
|
NzbDrone.Settings.Indexers.EditView = Backbone.Marionette.ItemView.extend({
|
|
template : 'Settings/Indexers/EditTemplate',
|
|
|
|
events: {
|
|
'click .x-save': 'save'
|
|
},
|
|
|
|
initialize: function (options) {
|
|
this.indexerCollection = options.indexerCollection;
|
|
},
|
|
|
|
save: function () {
|
|
this.model.save(undefined, this.syncNotification("Indexer Saved", "Couldn't Save Indexer", this));
|
|
},
|
|
|
|
syncNotification: function (success, error, context) {
|
|
return {
|
|
success: function () {
|
|
NzbDrone.Shared.Messenger.show({
|
|
message: success
|
|
});
|
|
|
|
context.indexerCollection.add(context.model);
|
|
NzbDrone.modalRegion.closeModal();
|
|
},
|
|
|
|
error: function () {
|
|
window.alert(error);
|
|
}
|
|
};
|
|
}
|
|
});
|
|
});
|