From 493bfa6a169cd0f63deea0bf5da338fd6c8c3999 Mon Sep 17 00:00:00 2001 From: Andrew Bauer Date: Wed, 23 Dec 2020 09:15:31 -0600 Subject: [PATCH] eslint --- web/skins/classic/views/js/timeline.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/skins/classic/views/js/timeline.js b/web/skins/classic/views/js/timeline.js index a31fe65c3..93eca4d42 100644 --- a/web/skins/classic/views/js/timeline.js +++ b/web/skins/classic/views/js/timeline.js @@ -135,14 +135,14 @@ function loadEventImage( imagePath, eid, fid ) { imageSrc.attr('data-frame-id', fid); imageSrc.off('click'); imageSrc.click(function() { - showEvent(this) + showEvent(this); }); eventData.attr('data-event-id', eid); eventData.attr('data-frame-id', fid); eventData.off('click'); eventData.click(function() { - showEvent(this) + showEvent(this); }); }