mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
7093f352fe
backbone app is now fully served from nancy including css,js,html
13 lines
328 B
JavaScript
13 lines
328 B
JavaScript
define(['app'], function () {
|
|
NzbDrone.AddSeries.RootFolders.RootFolderModel = Backbone.Model.extend({
|
|
mutators: {
|
|
freeSpaceString: function () {
|
|
return this.get('freeSpace').bytes(2) + " Free";
|
|
}
|
|
},
|
|
|
|
defaults: {
|
|
freeSpace: 0,
|
|
}
|
|
});
|
|
}); |