1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-01 04:36:37 +00:00
Sonarr/NzbDrone.Web/_backboneApp/AddSeries/RootDir/RootDirModel.js

14 lines
276 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({
2013-01-25 17:54:45 +00:00
mutators: {
freeSpaceString: function () {
return this.get('freeSpace').bytes(2) + " Free";
2013-01-25 17:54:45 +00:00
}
},
defaults: {
freeSpace: 0,
2013-01-25 17:54:45 +00:00
}
2013-01-24 20:48:44 +00:00
});