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
Issue is that 0 is evaluated to false here: https://github.com/jamesflorentino/nanoScrollerJS/blob/master/bin/javascripts/jquery.nanoscroller.js#L865
0
false
Possible solutions are typeof options.scrollTop === 'number' or options.scrollTop != null.
typeof options.scrollTop === 'number'
options.scrollTop != null
Same thing happens with scrollBottom.
The text was updated successfully, but these errors were encountered:
Yup, need to fix that.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Issue is that
0
is evaluated tofalse
here: https://github.com/jamesflorentino/nanoScrollerJS/blob/master/bin/javascripts/jquery.nanoscroller.js#L865Possible solutions are
typeof options.scrollTop === 'number'
oroptions.scrollTop != null
.Same thing happens with scrollBottom.
The text was updated successfully, but these errors were encountered: