mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
FIxed jshint issue
This commit is contained in:
parent
c21ffcb5e4
commit
64bbba90b0
2 changed files with 4 additions and 5 deletions
|
@ -10,11 +10,10 @@ define(
|
|||
'System/StatusModel',
|
||||
'History/Queue/QueueCollection',
|
||||
'Config',
|
||||
'Shared/FormatHelpers',
|
||||
'Mixins/backbone.signalr.mixin',
|
||||
'fullcalendar',
|
||||
'jquery.easypiechart'
|
||||
], function ($, vent, Marionette, moment, CalendarCollection, StatusModel, QueueCollection, Config, FormatHelpers) {
|
||||
], function ($, vent, Marionette, moment, CalendarCollection, StatusModel, QueueCollection, Config) {
|
||||
|
||||
return Marionette.ItemView.extend({
|
||||
storageKey: 'calendar.view',
|
||||
|
@ -171,7 +170,7 @@ define(
|
|||
return undefined;
|
||||
}
|
||||
|
||||
return new moment(pending.get('estimatedCompletionTime')).fromNow();
|
||||
return moment(pending.get('estimatedCompletionTime')).fromNow();
|
||||
},
|
||||
|
||||
_getReleaseTitle: function (element) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue