Hydra9268
Hydra9268
If anyone has encountered this issue, I've fixed it. On line 329, replace ```js if (e.preventDefault && !releaseScroll) { e.preventDefault(); } ``` with ```js if (e.preventDefault && !releaseScroll) { e.target.blur();...
Not sure if anyone has had difficulty trying to make LazyLoad work for AJAX calls, but I found one technique that works. Wanted to share it. ```javascript window.jQuery.ajax({ type: "GET",...
There are four areas in the this code where the following throws a forEach. It is not a function because parent.children is not an array. Instead, it is an HTMLCollection...
## Bug description After implementing Tippy.js, a coworker demonstrated a problem: they tapped a button to show the tooltip, then slid their finger to the following button, which activated that...