1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/NzbDrone.Web/_backboneApp/AddSeries/RootDir/RootDirModel.js

14 lines
276 B
JavaScript
Raw Normal View History

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