How to stop the swipe event in jQTouch whilst a slide transition is occuring?

I fixed the problem. If people have a better solution , let me know.

I fixed the problem. If people have a better solution , let me know. I created a singleton called "delay" var delay = (function(){ wait = false; return { set:function(bool_wait){ wait = bool_wait; }, get:function(){ return wait; } } })(); "I know its a global" , You can implement this anyway you want.

Its the quick fix. Just put it in a script called delay. Js and attach it to the beginning of your document.

Now when you call "Swipe" Do the following $('#div. Touch'). Swipe(function(e,info){ if(delay.get() === false){ switch(info.

Direction){ case 'left': jQT. GoTo('#test', 'slide'); break; } delay. Set(true); setTimeout(function(){delay.

Set(false)},1000); } }); This just puts a 1 second delay between swiping.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions