mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 10:37:41 +00:00
13 lines
382 B
JavaScript
13 lines
382 B
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
NzbDrone.Missing.MissingModel = Backbone.Model.extend({
|
|
mutators: {
|
|
bestDateString : function () {
|
|
return bestDateString(this.get('airDate'));
|
|
},
|
|
paddedEpisodeNumber: function () {
|
|
return this.get('episodeNumber');
|
|
}
|
|
}
|
|
});
|
|
});
|