cozmo / jsQR

A pure javascript QR code reading library. This library takes in raw images and will locate, extract and parse any QR code found within.
https://cozmo.github.io/jsQR/
Apache License 2.0
3.7k stars 607 forks source link

Demo does not work on Safari #139

Open hiro20v opened 5 years ago

hiro20v commented 5 years ago

In Safari 12.1.1, the video remains stopped. It may be a bug of requestAnimationFrame.

For now, I could move it with this code.

setTimeout(function () {
    requestAnimationFrame(tick);
}, 10);