diff --git a/searx/static/themes/simple/js/oneko.js b/searx/static/themes/simple/js/oneko.js index 60f69d4df..82965c105 100644 --- a/searx/static/themes/simple/js/oneko.js +++ b/searx/static/themes/simple/js/oneko.js @@ -105,18 +105,11 @@ document.body.appendChild(nekoEl); - // Desktop: Track mouse movement - document.addEventListener('mousemove', function (event) { + document.addEventListener("mousemove", function (event) { mousePosX = event.clientX; mousePosY = event.clientY; }); - // Mobile: Track touch movement (including during scrolling) - document.addEventListener('touchmove', function (event) { - const touch = event.touches[0]; // Use the first touch point - mousePosX = touch.clientX; - mousePosY = touch.clientY; - }, { passive: true }); window.requestAnimationFrame(onAnimationFrame); }