From fa6bdae562d475f8e04d93368dd7d99542ad3c52 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Fri, 22 Jul 2011 16:46:58 +0200 Subject: [PATCH] Bugfix: return false to stop event handling when clicking on the next button (Thanks IsoLnCHiP) --- screenshots/index.html.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screenshots/index.html.mako b/screenshots/index.html.mako index 8ab46ac..7e5a874 100644 --- a/screenshots/index.html.mako +++ b/screenshots/index.html.mako @@ -278,7 +278,7 @@ $(document).ready(function() { // disable mousewheel handler during load (will be re-enabled after the animation) $(window).unmousewheel(wheelhandler); - return true; + return false; }; $('#imgright').click(imgright); -- 2.39.5