This commit is contained in:
Andrew Bauer 2020-12-23 09:15:31 -06:00
parent 3c79204592
commit 493bfa6a16
1 changed files with 2 additions and 2 deletions

View File

@ -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);
});
}