question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Infinite scroll fires even when we scroll a bit at top or middle?

See original GitHub issue

Infinite 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:open
  • Created 8 years ago
  • Reactions:2
  • Comments:5

github_iconTop GitHub Comments

1reaction
graingertcommented, Sep 21, 2016
0reactions
AndriiDidkivskycommented, Sep 21, 2016

@graingert Good idea, we are using angular-material in our project and it can resolve a problem. I have missed this point in documentation.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found