This might be what #169 is referring to.
The code that leads to locking up of the app:
function onMyCLick() {
window.plugins.nativepagetransitions.fade({
'iosdelay': -1,
'androiddelay': -1,
'duration': 0,
});
// Some work and API calls
setTimeout(function(){window.plugins.nativepagetransitions.executePendingTransition()}, 400);
}
now when the function is called repeatedly, the screen freezes at some point but still can recieve touches. It simply does not respond anymore
This might be what #169 is referring to. The code that leads to locking up of the app:
now when the function is called repeatedly, the screen freezes at some point but still can recieve touches. It simply does not respond anymore