I'm developing a hybrid app with PGB (cli-7.1.0). For a couple of weeks, the app freezes after on iOS (11.3) after brought back to foreground - not every time, but sometimes. The javascript keeps on running and no error is thrown, but no element can be touched anymore. It seems that all event handlers stop working. Scrolling is also not possible anymore.
There is no javascript error nor an error in the device logs, so I'm kinda stuck.
Does anyone have an idea, how to explain that behavior?
Thanks in advance. :)
Solution:
Turns out that iOS 11.3 and js-Fastclick are not compatible right now. There is a fork that solved all problems: https://github.com/lasselaakkonen/fastclick/tree/fix-ios-11-3-event-timestamps
Just in case someone runs into the same problem.