Fixes #210 by setting touch-action: auto (the default) when ignoreBarTouch is set to true.
Adding the track eventlistener will set touch-action style property to none.
This obviously prevents scrolling, which kind of defeats the whole point of setting ignoreBarTouch to true
Because this element is still in the old style, I wonder if I actually picked the right lifecycle method to implement this in. Were not doing anything fancy, basically just removing an inline element style.
P.S. I'm sorry I missed this on my first implementation of 'ignoreBarTouch'
Fixes #210 by setting
touch-action: auto
(the default) when ignoreBarTouch is set totrue
.Adding the
track
eventlistener will settouch-action
style property tonone
. This obviously prevents scrolling, which kind of defeats the whole point of setting ignoreBarTouch totrue
Because this element is still in the old style, I wonder if I actually picked the right lifecycle method to implement this in. Were not doing anything fancy, basically just removing an inline element style.
P.S. I'm sorry I missed this on my first implementation of 'ignoreBarTouch'