mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
fixed on air for upcoming view
This commit is contained in:
parent
b1fa306223
commit
8737cb0145
@ -3,16 +3,27 @@
|
||||
define(
|
||||
[
|
||||
'app',
|
||||
'marionette'
|
||||
], function (App, Marionette) {
|
||||
'marionette',
|
||||
'moment'
|
||||
], function (App, Marionette, Moment) {
|
||||
return Marionette.ItemView.extend({
|
||||
template: 'Calendar/UpcomingItemTemplate',
|
||||
template: 'Calendar/UpcomingItemViewTemplate',
|
||||
tagName : 'div',
|
||||
|
||||
events: {
|
||||
'click .x-episode-title': '_showEpisodeDetails'
|
||||
},
|
||||
|
||||
initialize: function () {
|
||||
var start = this.model.get('airDateUtc');
|
||||
var runtime = this.model.get('series').runtime;
|
||||
var end = Moment(start).add('minutes', runtime);
|
||||
|
||||
this.model.set({
|
||||
end: end
|
||||
})
|
||||
},
|
||||
|
||||
_showEpisodeDetails: function () {
|
||||
App.vent.trigger(App.Commands.ShowEpisodeDetails, {episode: this.model});
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
<div class="episode-info">
|
||||
{{debug}}
|
||||
{{#with series}}
|
||||
{{qualityProfile qualityProfileId}}
|
||||
<span class="label label-info">{{network}}</span>
|
||||
|
Loading…
Reference in New Issue
Block a user