Infinite scroll fires even when we scroll a bit at top or middle?
See original GitHub issueInfinite scroll fires even when we scroll a bit at top or middle.
<div infinite-scroll='loadMore()' infinite-scroll-disabled='isbusy'>
</div>
$scope.isbusy = false;
$scope.loadMore = function() {
console.log("load");
$scope.isbusy = true;
// loads data
$scope.isbusy = false;
});
Issue Analytics
- State:
- Created 8 years ago
- Reactions:2
- Comments:5
Top Results From Across the Web
Scroll event firing too many times. I only want it to fire a ...
It fires all sorts of intermediate scroll events and does not tell you when things are done moving. So, we come up with...
Read more >4 Ways to Listen to Page Scrolling for Dynamic UI in ...
Method 4: Listen to the HTML element scroll events Even easier, you can window scroll from any HTML element in the DOM, using...
Read more >Infinite Scrolling vs. Pagination | by Nick Babich
Infinite scrolling is a technique that allows users to scroll through a massive chunk of content with no finishing-line in sight. This technique...
Read more >Virtual scrolling: Core principles and basic implementation ...
Instead, you want to show the user only a small portion of data at a given time. Other items should be emulated (virtualized)...
Read more >Pagination vs. Infinite Scroll: Which Is Better for Your ...
If you paginate your content, you can trust that users will be familiar with your site's layout. As long as your pages are...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
have you tried using https://material.angularjs.org/latest/demo/virtualRepeat
@graingert Good idea, we are using angular-material in our project and it can resolve a problem. I have missed this point in documentation.