mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-16 16:04:08 +01:00
14 lines
276 B
JavaScript
14 lines
276 B
JavaScript
/// <reference path="../../app.js" />
|
|
NzbDrone.AddSeries.RootDirModel = Backbone.Model.extend({
|
|
|
|
mutators: {
|
|
freeSpaceString: function () {
|
|
return this.get('freeSpace').bytes(2) + " Free";
|
|
}
|
|
},
|
|
|
|
defaults: {
|
|
freeSpace: 0,
|
|
}
|
|
});
|