-
Notifications
You must be signed in to change notification settings - Fork 895
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prevent pagination buttons from scrolling to top #750
base: master
Are you sure you want to change the base?
Conversation
Fixes a regression introduced by javve#499, causing the browser to scroll to the top of the page when the pagination buttons are clicked.
This is the patch submitted upstream [[1]]. Fixes #30494 [1]: javve/list.js#750
This is the patch submitted upstream [[1]]. Fixes #30494 [1]: javve/list.js#750
Codecov Report
@@ Coverage Diff @@
## master #750 +/- ##
==========================================
- Coverage 93.54% 93.43% -0.12%
==========================================
Files 19 19
Lines 837 838 +1
Branches 199 199
==========================================
Hits 783 783
- Misses 38 39 +1
Partials 16 16
📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
The initial commit prevented the click event's execution of for all the List's objects. This causes problems e.g. when the list contains clickable elements such as checkboxes, which become unusable. |
This is the patch submitted upstream [[1]]. Fixes #30494 [1]: javve/list.js#750
@javve any chance this could be merged ? |
Fixes a regression introduced by #499, causing the browser to scroll to
the top of the page when the pagination buttons are clicked.