Skip to content
Snippets Groups Projects
Commit e4a36e98 authored by Elijah Byrd's avatar Elijah Byrd
Browse files

Minor fix to overlay lazy loading.

parent f3fc19d7
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -356,6 +356,7 @@ ...@@ -356,6 +356,7 @@
} }
// If the marker is in bounds, position the overlay off-screen. This will keep it from receiving incorrect mouse hover, until it is repositioned by its marker's hover or its own focus event. // If the marker is in bounds, position the overlay off-screen. This will keep it from receiving incorrect mouse hover, until it is repositioned by its marker's hover or its own focus event.
else { else {
jQuery('div#' + markerID).css('display', 'block');
jQuery('div#' + markerID).css('left', '-2000px'); jQuery('div#' + markerID).css('left', '-2000px');
jQuery('div#' + markerID).css('top', '-2000px'); jQuery('div#' + markerID).css('top', '-2000px');
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment