8values / 8values.github.io

The 8values political quiz
MIT License
989 stars 411 forks source link

Cannot download the final image on mobile browser #7

Closed gervasiocaj closed 5 years ago

gervasiocaj commented 7 years ago

The bottom image at the end cannot be long-clicked to download, and there is no specific button for it either. Tested in Chrome for Android and MIUI Browser.

TristanBomb commented 7 years ago

This occurs because the final image is a canvas element. I'm aware of the problem but unfortunately I am not sure how to fix it.

slig commented 7 years ago

This occurs because the final image is a canvas element

A suggestion: have an img overlay the canvas and then:

overlayImg.src = canvas.toDataURL();
bvibber commented 7 years ago

Ran into this on mobile Safari too; the above suggestion sounds legit, should work. :)