Hi all, I have found the solution to this problem! There’s a tiny error on line 140 of canvas.min.js
You need to change this
for(i=0;i<a.length;i++)
to this
for(var i=0;i<a.length;i++)
I have this problem too, is there any solution?