Page Transition Queue
Page Transition Queue
Currently multiple link clicks are queued and fired sequentially, but i want to disable this behavior.
So, how do i clear the page transition queue before the following function is executed:
function releasePageTransitionLock() {
isPageTransitioning = false;
if ( pageTransitionQueue.length > 0 ) {
$.mobile.changePage.apply( null, pageTransitionQueue.pop() );
}
}