2013-03-04 00:09:43 +00:00
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
define([
|
|
|
|
|
'app', 'Settings/SettingsModel'
|
|
|
|
|
|
|
|
|
|
], function () {
|
|
|
|
|
|
|
|
|
|
NzbDrone.Settings.Naming.NamingView = Backbone.Marionette.ItemView.extend({
|
|
|
|
|
template: 'Settings/Naming/NamingTemplate',
|
2013-03-04 02:02:57 +00:00
|
|
|
|
className: 'form-horizontal',
|
2013-03-04 00:09:43 +00:00
|
|
|
|
|
|
|
|
|
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!');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|