mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
30 lines
613 B
JavaScript
30 lines
613 B
JavaScript
|
'use strict';
|
||
|
|
||
|
define([
|
||
|
'app', 'Settings/SettingsModel'
|
||
|
|
||
|
], function () {
|
||
|
|
||
|
NzbDrone.Settings.Naming.NamingView = Backbone.Marionette.ItemView.extend({
|
||
|
template: 'Settings/Naming/NamingTemplate',
|
||
|
|
||
|
events: {
|
||
|
'click .x-save': 'save'
|
||
|
},
|
||
|
|
||
|
initialize: function (options) {
|
||
|
this.model = options.model;
|
||
|
},
|
||
|
|
||
|
onRender: function () {
|
||
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
||
|
},
|
||
|
|
||
|
|
||
|
save: function () {
|
||
|
//Todo: Actually save the model
|
||
|
alert('Save pressed!');
|
||
|
}
|
||
|
});
|
||
|
});
|