Removed virtuals from ConfigService.

Settings UI taking shape.
This commit is contained in:
Mark McDowall
2013-03-04 22:50:42 -08:00
parent b9a14a5cf5
commit 9bb383e2b8
18 changed files with 654 additions and 222 deletions

View File

@@ -8,22 +8,8 @@ define([
NzbDrone.Settings.Misc.MiscView = Backbone.Marionette.ItemView.extend({
template: 'Settings/Misc/MiscTemplate',
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!');
}
});
});