1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

UI Cleanup - Updated System, Tags and Wanted subtrees.

This commit is contained in:
Taloth Saldono
2015-02-14 11:18:21 +01:00
parent d6079a701c
commit 32fc68b9df
46 changed files with 1008 additions and 643 deletions
+6 -5
View File
@@ -1,8 +1,9 @@
var Backbone = require('backbone');
var ApiData = require('../Shared/ApiData');
module.exports = (function(){
var StatusModel = Backbone.Model.extend({url : window.NzbDrone.ApiRoot + '/system/status'});
var instance = new StatusModel(ApiData.get('system/status'));
return instance;
}).call(this);
var StatusModel = Backbone.Model.extend({
url : window.NzbDrone.ApiRoot + '/system/status'
});
var instance = new StatusModel(ApiData.get('system/status'));
module.exports = instance;