From: Michael Stapelberg Date: Fri, 22 Jul 2011 14:46:58 +0000 (+0200) Subject: Bugfix: return false to stop event handling when clicking on the next button (Thanks... X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fa6bdae562d475f8e04d93368dd7d99542ad3c52;p=i3%2Fi3.github.io Bugfix: return false to stop event handling when clicking on the next button (Thanks IsoLnCHiP) --- 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);