change call to popup -> view in event.js

This commit is contained in:
Andrew Bauer 2020-09-26 21:21:29 -05:00
parent 9d2450d55d
commit 2655118cbd
1 changed files with 2 additions and 2 deletions

View File

@ -967,7 +967,7 @@ function unarchiveEvent() {
} }
function showEventFrames() { function showEventFrames() {
createPopup('?view=frames&eid='+eventData.Id, 'zmFrames', 'frames', WEB_LIST_THUMB_WIDTH, WEB_LIST_THUMB_HEIGHT); window.location.assign('?view=frames&eid='+eventData.Id);
} }
function showStream() { function showStream() {
@ -1015,7 +1015,7 @@ function showStills() {
function showFrameStats() { function showFrameStats() {
var fid = $('eventImageNo').get('text'); var fid = $('eventImageNo').get('text');
createPopup('?view=stats&eid='+eventData.Id+'&fid='+fid, 'zmStats', 'stats', eventData.Width, eventData.Height); window.location.assign('?view=stats&eid='+eventData.Id+'&fid='+fid);
} }
function videoEvent() { function videoEvent() {