-
Notifications
You must be signed in to change notification settings - Fork 101
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
Query : Use of _.debounce #397
Comments
This use of the If you remove the "debouncer" you may indeed observe the immediate benefit of instant refresh, but in some other (edge?) cases the multiple quick-fire calls to So, could you please try to add the "true" function parameter after "100", so that the Many thanks! :) |
Thanks @danielweck , the solution you suggested worked. Now the |
Appears resolved. Closing |
Issue "migrated" to: #399 |
Can you please explain the use of the following line in
reflowable_view.js
This line is causing the
updatePagination_
function to be called twice on window resize, due to which a flickering is observed after the window resizes.If I rewrite the code after removing the
_.debounce
, then flickering no longer occurs.Can you please guide me if rewriting the code can cause any regression issues. ?
The text was updated successfully, but these errors were encountered: