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
After updating to rc5 the InfiniteScroll get broken if is used in native scroll.
Here is error:
TypeError: Cannot read property '__container' of undefined
at ionic.bundle.js:47148
at ionic.bundle.js:24859
at completeOutstandingRequest (ionic.bundle.js:13541)
at ionic.bundle.js:13921
The problem is in the commit "fix(infiniteScroll): prevent checkbounds when infinitescroll completes when page is cached. Fixes #2694".
self.checkBounds();
// only check bounds again immediately if the page isn't cached (scroll el has height)
if (self.scrollView.__container && self.scrollView.__container.offsetHeight > 0) {
self.checkBounds();
}
In native scroll mode the scrollView is undefined.
The text was updated successfully, but these errors were encountered:
melnikov77
changed the title
Bug - InfiniteScroll broken in native scroll
bug: Bug - InfiniteScroll broken in native scroll
May 8, 2015
Type: bug
Platform: all
After updating to rc5 the InfiniteScroll get broken if is used in native scroll.
Here is error:
TypeError: Cannot read property '__container' of undefined
at ionic.bundle.js:47148
at ionic.bundle.js:24859
at completeOutstandingRequest (ionic.bundle.js:13541)
at ionic.bundle.js:13921
The problem is in the commit "fix(infiniteScroll): prevent checkbounds when infinitescroll completes when page is cached. Fixes #2694".
In native scroll mode the scrollView is undefined.
The text was updated successfully, but these errors were encountered: