Radarr/NzbDrone.Web/_backboneApp/AddSeries/RootDir/RootDirModel.js

15 lines
299 B
JavaScript
Raw Normal View History

2013-01-25 17:54:45 +00:00
/// <reference path="../../app.js" />
2013-01-24 20:48:44 +00:00
NzbDrone.AddSeries.RootDirModel = Backbone.Model.extend({
idAttribute: 'Id',
2013-01-25 17:54:45 +00:00
mutators: {
FreeSpaceString: function () {
return this.get('FreeSpace').bytes(2) + " Free";
}
},
defaults: {
FreeSpace: 0,
}
2013-01-24 20:48:44 +00:00
});