1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-11 01:10:36 +02:00
Files
Sonarr/UI/Missing/MissingModel.js

14 lines
382 B
JavaScript
Raw Normal View History

2013-03-30 12:33:41 -07:00
"use strict";
define(['app'], function () {
2013-03-20 20:02:57 -07:00
NzbDrone.Missing.MissingModel = Backbone.Model.extend({
mutators: {
bestDateString : function () {
2013-03-20 20:02:57 -07:00
return bestDateString(this.get('airDate'));
},
paddedEpisodeNumber: function () {
2013-03-20 20:02:57 -07:00
return this.get('episodeNumber');
}
}
});
});