Description
The UI is very unresponsive when a task is running. This is caused by the semi-synchronous javascript code execution.
Solution
The use of web workers should solve the problem, by running the tasks in a seperate thread instead of clogging the main thread.
Description
Solution