2013-05-03 06:53:32 +00:00
|
|
|
|
"use strict";
|
|
|
|
|
define(['app'], function (app) {
|
|
|
|
|
NzbDrone.History.Model = Backbone.Model.extend({
|
2013-05-10 22:33:04 +00:00
|
|
|
|
mutators: {
|
|
|
|
|
seasonNumber: function () {
|
|
|
|
|
return this.get('episode').seasonNumber;
|
|
|
|
|
},
|
2013-05-03 06:53:32 +00:00
|
|
|
|
|
2013-05-10 22:33:04 +00:00
|
|
|
|
paddedEpisodeNumber: function () {
|
|
|
|
|
return this.get('episode').episodeNumber.pad(2);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-05-03 06:53:32 +00:00
|
|
|
|
});
|
|
|
|
|
});
|