From a9b92905ca66ae555ec66321df7ba64fd90175c4 Mon Sep 17 00:00:00 2001 From: Andrew Bauer Date: Tue, 22 Dec 2020 19:07:12 -0600 Subject: [PATCH] eslint --- web/skins/classic/views/js/timeline.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/skins/classic/views/js/timeline.js b/web/skins/classic/views/js/timeline.js index cf407fccc..fd1fe5e40 100644 --- a/web/skins/classic/views/js/timeline.js +++ b/web/skins/classic/views/js/timeline.js @@ -27,7 +27,7 @@ function createEventHtml(zm_event, frame) { function showEventDetail(eventHtml) { $j('#instruction').addClass('hidden'); - $j('#eventData').empty().append(eventHtml).removeClass('hidden');; + $j('#eventData').empty().append(eventHtml).removeClass('hidden'); } function eventDataResponse(respObj, respText) { @@ -77,7 +77,6 @@ function showEventData(eventId, frameId) { if ( zm_event['frames'][frameId] ) { showEventDetail( zm_event['frames'][frameId]['html'] ); var imagePath = 'index.php?view=image&eid='+eventId+'&fid='+frameId; - var videoName = zm_event.DefaultVideo; loadEventImage(imagePath, eventId, frameId); return; } else {