You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.
module looks great- thank you.
Having difficulty getting element.bind('scroll', function () { working. Module loads and line read; scrolling does not trigger function though. Can't get any element scrolling to trigger bound scroll function. Using: <div class="search-grid container-fluid" ng-class="{starred: currentSearch.starred}" lr-infinite-scroll="loadMore()" scroll scroll-threshold="200" time-threshold="200" >
The text was updated successfully, but these errors were encountered:
maybe scoping issue, your attribute scroll create an isolated scope ?
Also, I have not tried with angular 1.3 release candidate, so you could try with 1.2.x.
If it does not work try to provide a plunker or any running example.
In my tests handler always evaluated to noop, so the function never got called.
To get it working without an isolate scope, I used $apply() directly in the promise timeout function, which $eval()s its argument against the scope.
module looks great- thank you.
Having difficulty
getting element.bind('scroll', function () {
working. Module loads and line read; scrolling does not trigger function though. Can't get any element scrolling to trigger bound scroll function. Using:<div class="search-grid container-fluid" ng-class="{starred: currentSearch.starred}" lr-infinite-scroll="loadMore()" scroll scroll-threshold="200" time-threshold="200" >
The text was updated successfully, but these errors were encountered: