Vertical scrolling not working on mobile devices
kr1-ch opened this issue ยท 7 comments
Cannot scroll to bottom or top in the carousel zone (only on mobile devices). This issue is probably due to these inline CSS rules:
touch-action: none;
user-select: none;
-webkit-user-drag: none;
Related to angular/angular#10541
Implemented a fix in PR #22
Sorry for taking long to check this issue. I will review @chriswnewman's PR as soon as possible.
Hi,
just wanted to know if this fix has been released ? the readme says to load the module with "forRoot()" but it doesn't seem to work.
Please let me know if i am missing something. Appreciate any help.
Hi, @gauravaditya, thanks for noticing and reporting. Sorry, that was my mistake, as I approved the PR that fixed this issue but didn't release a new version on NPM, still, the README has been misleadingly modified.
I have pushed a new release and soon CI will publish the package to NPM.
Thanks for pushing the release, was looking forward to it. :)
Sorry for the inconvenience! v0.5.1
has the fix.
Oddly enough, I'm using v0.5.1 but I still have this issue.
Shouldn't <li>
have touch-action: pan-y
instead of none
?
I see that in the demo the element have touch-action: pan-y
. But for some reason, in my app, it's touch-action: none
.