Skip to content

Commit

Permalink
Update searchJumper.user.js
Browse files Browse the repository at this point in the history
  • Loading branch information
hoothin committed Jun 15, 2024
1 parent b86645a commit 6970c96
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion searchJumper.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -12354,9 +12354,13 @@
}, 100);
hideTimer = setTimeout(() => {
searchBar.bar.style.display = 'none';
if (searchData.prefConfig.resizePage) {
if (typeof searchBar.initBodyStyle != "undefined") getBody(document).style.cssText = searchBar.initBodyStyle;
searchBar.con.classList.remove("resizePage");
}
document.removeEventListener('touchend', mouseUpHandler, false);
document.removeEventListener('touchmove', mouseMoveHandler, false);
}, 2000);
}, 1500);
}, { passive: false, capture: false });

searchBar.bar.addEventListener(getSupportWheelEventName(), e => {
Expand Down

0 comments on commit 6970c96

Please sign in to comment.