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(); } ``` --- Remove line 330 ```js if (!releaseScroll) { e.returnValue = false; } ``` --- Inside the else on line 350, add ```js document.onmousemove = function (e) { e.returnValue = false }; ``` That will allow the script to correctly return a false value during the scroll wheel event. Hope that helps! :)