System now uses tabs instead of toolbar

This commit is contained in:
Mark McDowall
2013-09-30 22:30:02 -07:00
parent ea5549d736
commit 6a10382e7b
40 changed files with 330 additions and 224 deletions

View File

@@ -4,12 +4,12 @@ define(
'backbone'
], function (Backbone) {
var model = Backbone.Model.extend({
var StatusModel = Backbone.Model.extend({
url: window.NzbDrone.ApiRoot + '/system/status'
});
var instance = new model();
var instance = new StatusModel();
instance.fetch();
return instance;
});