prevent scroll on fragment expand (#308)
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Mon, 17 May 2010 13:42:03 +0000 (15:42 +0200)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Mon, 17 May 2010 13:42:03 +0000 (15:42 +0200)
wolnelektury/static/js/catalogue.js

index 054f247..6b61e6d 100644 (file)
@@ -79,7 +79,8 @@ function serverTime() {
                     function() { $(this).css({background: '#FFF'}); }
                 ).click(function() {
                     $(this).fadeOut(function() {
-                        $(this).prev().fadeIn()
+                        $(this).prev().fadeIn();
+                        return false;
                     });
                 })
             }
@@ -87,6 +88,7 @@ function serverTime() {
         
         $('.fragment-short-text').click(function() {
             $(this).fadeOut(function() { $(this).next().fadeIn() });
+            return false;
         }).hover(
             function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
             function() { $(this).css({background: '#FFF'}); }