We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have faced with scroll problems on my android device (xiaomi redmi note 4) when set attr infinite-scroll-distance = '0.5'
I am using angular 1.4.2
And there is no check for Integerity in your library(version 1.0.0):
scrollDistance = 0; if (attrs.infiniteScrollDistance != null) { scope.$watch(attrs.infiniteScrollDistance, function(value) { return scrollDistance = parseInt(value, 10); });
so I had to change it to :
if (attrs.infiniteScrollDistance != null) { scope.$watch(attrs.infiniteScrollDistance, function (value) { return scrollDistance = parseFloat(value); }); }
The text was updated successfully, but these errors were encountered:
@maximusDreddoff ah parseFloat would be way better, can you create a PR?
Sorry, something went wrong.
@graingert yep, of course. I will try to create on Monday.
No branches or pull requests
I have faced with scroll problems on my android device (xiaomi redmi note 4) when set attr infinite-scroll-distance = '0.5'
I am using angular 1.4.2
And there is no check for Integerity in your library(version 1.0.0):
so I had to change it to :
The text was updated successfully, but these errors were encountered: