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
+6 -1
View File
@@ -40,7 +40,8 @@
'click .x-download-client-tab': 'showDownloadClient',
'click .x-notifications-tab': 'showNotifications',
'click .x-system-tab': 'showSystem',
'click .x-misc-tab': 'showMisc'
'click .x-misc-tab': 'showMisc',
'click .x-save-settings': 'save'
},
showNaming: function (e) {
@@ -153,6 +154,10 @@
default:
this.showNaming();
}
},
save: function () {
this.settings.save();
}
});
});