0

I am using bootstrap 3 and testing my webapp on mobile safari browser, I have have noticed that when scrolling (holding down finger and sliding up/down), if i during the scroll uncover a new div element, it won't be visible until i lift the finger

Any idea as to why this is?

amphetamachine
  • 27,620
  • 12
  • 60
  • 72
Tarlen
  • 3,657
  • 8
  • 30
  • 54
  • This may have changed but I think Twitter Bootstrap does not support touch events on its own so your code is responding to a plain old "mouseUp()" instead of a "touch()." You will need to add a touch library like fastClick.js or use jQuery touch events to gain this functionality. http://stackoverflow.com/questions/19537260/recommended-way-to-enable-touch-events-in-bootstrap-3 – Raydot Jan 30 '15 at 19:38

1 Answers1

1

I think Twitter Bootstrap does not support touch events on its own so your code is responding to a plain old "mouseUp()" instead of a "touch()." You will need to add a touch library like fastClick.js or use jQuery touch events to gain this functionality. See: this question for more detail.

Community
  • 1
  • 1
Raydot
  • 1,458
  • 1
  • 23
  • 38