Radarr/UI/Quality/QualitySizeModel.js

18 lines
416 B
JavaScript
Raw Normal View History

2013-06-25 05:12:42 +00:00
'use strict';
define(
[
'backbone'
], function (Backbone) {
return Backbone.Model.extend({
mutators: {
thirtyMinuteSize: function () {
return this.get('maxSize') * 30;
},
sixtyMinuteSize : function () {
return this.get('maxSize') * 60;
}
}
});
});