How to stop the swipe event in jQTouch whilst a slide transition is occuring?
I've almost finished a hybrid site and theres one issue I cant resolve (many due to the deliberate lack of documention on the now Sencha library). I have a binded event on the swipe, left and right, proper animations, its just when I swipe quickly, or I swipe - the page starts to transition (slide) - whilest transisitoning I swipe again. I throws jQtouch and results in a black page. $('div.touch').swipe(function(event, info){ switch(info.direction){ case 'left': jQT.goTo('#test', 'slide'); break; I'm thinking 'pageAnimationEnd' will probably be the event I need to use and tie in somehow. But