scroll to top on pagination master
authorRadek Czajka <rczajka@rczajka.pl>
Wed, 16 Jul 2025 14:25:07 +0000 (16:25 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Wed, 16 Jul 2025 14:25:07 +0000 (16:25 +0200)
src/catalogue/static/book/filter.js

index 2ff4262..37613bf 100644 (file)
     }
 
     $("#paginator").on('click', 'a', function() {
     }
 
     $("#paginator").on('click', 'a', function() {
-        get_page_by_url(url=$(this).attr('href'));
+        get_page_by_url(url=$(this).attr('href'), () => {
+            $("html").animate({
+                scrollTop: $("#book-list").offset().top - 50
+            });
+        });
         return false;
     });
 
         return false;
     });