angular-endless-scroll icon indicating copy to clipboard operation
angular-endless-scroll copied to clipboard

Endless scrolling for AngularJS

Results 11 angular-endless-scroll issues
Sort by recently updated
recently updated
newest added

It keeps on firing $scope.$on('endlessScroll:next', function () { });

When I comment out the line that sets its height everything works fine. Is it necessary? What is its intended function?

``` angular.js:13920 TypeError: Cannot read property 'item' of undefined at EndlessScroller. (angular-endless-scroll.js:519) at HTMLLIElement. (angular.js:1247) at Function.each (jquery.js:368) at jQuery.each (jquery.js:157) at EndlessScroller._getDimension (angular-endless-scroll.js:514) at EndlessScroller.clean (angular-endless-scroll.js:296) at EndlessScroller.check (angular-endless-scroll.js:145)...

I had to modify the _onScroll function to include if (this.scope.$$phase), this allows scrolling from within another digest cycle. I was getting a $digest already in progress error. Any thoughts?...

// Set default placeholder attrs defaultPlaceholderAttrs = { visibility: 'hidden', padding: 0, border: 0 }; for me it should be display: none;

in the README, external site, wiki..

Hi, thanks for the great lib! Simple and solve the problem! I am using this lib on a table like this: ``` my headers... ``` I go to the bottom...

Hi. Firstly, amazing—love the package. We need more packages that provide behaviour without custom style and scope. I am trying to create a UI with endless-scroll but when I position...