mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-08 23:34:53 +00:00
14 lines
384 B
JavaScript
14 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);
|
|
}
|
|
}
|
|
});
|
|
});
|