mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
15 lines
384 B
JavaScript
15 lines
384 B
JavaScript
"use strict";
|
|
define(['app'], function (app) {
|
|
NzbDrone.History.Model = Backbone.Model.extend({
|
|
mutators: {
|
|
seasonNumber: function () {
|
|
return this.get('episode').seasonNumber;
|
|
},
|
|
|
|
paddedEpisodeNumber: function () {
|
|
return this.get('episode').episodeNumber.pad(2);
|
|
}
|
|
}
|
|
});
|
|
});
|