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
So, the scrollbars measure function does not work as no scroll is being triggered as they just don't appear unless mouse over or touch.
there is an easy fix.
easy
.scrollbar-fix::-webkit-scrollbar { -webkit-appearance: none; }
and add the class to the measureScrollbar func
function measureScrollbar(){ var $c = $("<div class='scrollbar-fix' style='position:absolute; top:-10000px; left:-10000px; width:100px; height:100px; overflow:scroll;'></div>").appendTo("body"); var dim = { width: $c.width() - $c[0].clientWidth, height: $c.height() - $c[0].clientHeight }; $c.remove(); return dim; }
believe this will close off many an issue around scrollbars, such as #18 or #9
The text was updated successfully, but these errors were encountered:
I test with the fix.It doesn't work for #18 .
Sorry, something went wrong.
No branches or pull requests
So, the scrollbars measure function does not work as no scroll is being triggered as they just don't appear unless mouse over or touch.
there is an
easy
fix.and add the class to the measureScrollbar func
believe this will close off many an issue around scrollbars, such as #18 or #9
The text was updated successfully, but these errors were encountered: