mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
16 lines
441 B
JavaScript
16 lines
441 B
JavaScript
define(['app'], function (app) {
|
|
NzbDrone.Calendar.CalendarModel = Backbone.Model.extend({
|
|
mutators: {
|
|
title: function () {
|
|
return this.get('seriesTitle') + ' - ' + this.get('seasonNumber') + 'x' + this.get('episodeNumber').pad(2);
|
|
},
|
|
allDay: function(){
|
|
return false;
|
|
}
|
|
},
|
|
defaults: {
|
|
status: 0
|
|
}
|
|
});
|
|
});
|