mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07:00
fixed some jshint issues.
This commit is contained in:
parent
51038d656c
commit
e981ef4752
11 changed files with 54 additions and 19 deletions
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
define(['app', 'Calendar/CalendarItemView'], function (app) {
|
||||
define(['app', 'Calendar/CalendarItemView'], function () {
|
||||
NzbDrone.Calendar.CalendarCollectionView = Backbone.Marionette.CompositeView.extend({
|
||||
itemView : NzbDrone.Calendar.CalendarItemView,
|
||||
itemViewContainer: '#events',
|
||||
|
@ -47,10 +47,10 @@ define(['app', 'Calendar/CalendarItemView'], function (app) {
|
|||
trigger : 'manual'
|
||||
});
|
||||
},
|
||||
eventMouseover: function (event, jsEvent, view) {
|
||||
eventMouseover: function () {
|
||||
$(this).popover('show');
|
||||
},
|
||||
eventMouseout : function (event, jsEvent, view) {
|
||||
eventMouseout : function () {
|
||||
$(this).popover('hide');
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue