1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Settings/Indexers/EditView.js

27 lines
607 B
JavaScript
Raw Normal View History

'use strict';
2013-05-28 03:19:07 +03:00
define(
[
'marionette',
'Mixins/AsModelBoundView'
], function (Marionette, AsModelBoundView) {
2013-05-28 03:19:07 +03:00
var view = Marionette.ItemView.extend({
template: 'Settings/Indexers/EditTemplate',
2013-05-28 03:19:07 +03:00
events: {
'click .x-save': 'save'
},
2013-05-28 03:19:07 +03:00
initialize: function (options) {
this.indexerCollection = options.indexerCollection;
},
2013-05-28 03:19:07 +03:00
save: function () {
this.model.saveSettings();
}
});
2013-06-19 04:02:23 +03:00
return AsModelBoundView.call(view);
});