2013-03-21 03:02:57 +00:00
|
|
|
|
define(['app'], function (app) {
|
|
|
|
|
NzbDrone.Missing.MissingModel = Backbone.Model.extend({
|
|
|
|
|
mutators: {
|
2013-03-29 23:28:58 +00:00
|
|
|
|
bestDateString : function () {
|
2013-03-21 03:02:57 +00:00
|
|
|
|
return bestDateString(this.get('airDate'));
|
|
|
|
|
},
|
2013-03-29 23:28:58 +00:00
|
|
|
|
paddedEpisodeNumber: function () {
|
2013-03-21 03:02:57 +00:00
|
|
|
|
return this.get('episodeNumber');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|