removed QualityModel/SeasonModel mutators.

This commit is contained in:
Keivan Beigi 2013-07-16 15:57:06 -07:00
commit eceed9f439
4 changed files with 7 additions and 46 deletions

View file

@ -16,27 +16,6 @@ define(
this.errorMessage = 'Couldn\'t save ' + name + ' size settings';
this.baseInitialize.call(this);
},
mutators: {
thirtyMinuteSize: function () {
var maxSize = this.get('maxSize');
if (maxSize === 0) {
return 'No Limit';
}
return (maxSize * 1024 * 1024 * 30).bytes(1);
},
sixtyMinuteSize : function () {
var maxSize = this.get('maxSize');
if (maxSize === 0) {
return 'No Limit';
}
return (maxSize * 1024 * 1024 * 60).bytes(1);
}
}
});
});