KnicKnic / WASM-ImageMagick

Webassembly compilation of https://github.com/ImageMagick/ImageMagick & samples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`let` declaration breaks worker

Axure opened this issue · comments

The onmessage function provided in the worker file magick.js from 'distis declared withlet. Therefore onmessageis not a property ofself`, making the script fail to work as expected.

The example given in README.md works, because inside their magick.js, onmessage is introduced without any keyword.

@Axure refixed this issue in c84aadb after I got build issues sorted out

Thanks for catching & reporting the issue.