11

I want to disable the scroll sometimes so I can do multi-touch events in the same area, something like...

if event.originalEvent.touches.length is 2 then myScroll.disable()

Is something like this possible?

fancy
  • 48,619
  • 62
  • 153
  • 231

1 Answers1

30
myScroll.disable()

Then on touchend

myScroll.enable()

:)

fancy
  • 48,619
  • 62
  • 153
  • 231