mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
769331d45d
single quotes
19 lines
393 B
JavaScript
19 lines
393 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'sugar'
|
|
], function (Backbone) {
|
|
return Backbone.Model.extend({
|
|
mutators: {
|
|
freeSpaceString: function () {
|
|
return this.get('freeSpace').bytes(2) + ' Free';
|
|
}
|
|
},
|
|
|
|
defaults: {
|
|
freeSpace: 0
|
|
}
|
|
});
|
|
});
|