Merged PR 200: Implement the Canvas API rather than using SVG

This commit is contained in:
Eric Nguyen 2022-10-02 19:20:19 +00:00
parent af1b32c8d6
commit 04d79688cb
6 changed files with 712 additions and 11 deletions

View file

@ -17,6 +17,12 @@ export const FAST_BOOT = false;
/** Disable any call to the API (default = false) */
export const DISABLE_API = false;
/**
* Replace the SVG viewer by a canvas
* EXPERIMENTAL: svg export wont work and it won't be possible to insert a custom svg)
*/
export const USE_EXPERIMENTAL_CANVAS_API = false;
/** Enable keyboard shortcuts (default = true) */
export const ENABLE_SHORTCUTS = true;