Open hannah-martinez opened 1 week ago
Can do this with a few lines of JS:
const a = document.createElement('a'); a.href = url; a.download = 'annotations.json'; document.body.appendChild(a); a.click(); URL.revokeObjectURL(url);
https://github.com/aplbrain/webpaint/blob/fcfe7d86408d78fc8036d00a5165f1960968b685/src/routes/standalone/%2Bpage.svelte#L53-L58
Can do this with a few lines of JS:
https://github.com/aplbrain/webpaint/blob/fcfe7d86408d78fc8036d00a5165f1960968b685/src/routes/standalone/%2Bpage.svelte#L53-L58