2013-06-22 06:24:24 +00:00
|
|
|
|
'use strict';
|
2013-06-07 01:29:54 +00:00
|
|
|
|
define(['app'], function () {
|
2013-06-05 05:38:15 +00:00
|
|
|
|
NzbDrone.Release.Model = Backbone.Model.extend({
|
|
|
|
|
/* mutators: {
|
|
|
|
|
seasonNumber: function () {
|
|
|
|
|
return this.get('episode').seasonNumber;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
paddedEpisodeNumber: function () {
|
|
|
|
|
return this.get('episode').episodeNumber.pad(2);
|
|
|
|
|
}
|
|
|
|
|
}*/
|
|
|
|
|
});
|
|
|
|
|
});
|