#97 update from master svgedit

This commit is contained in:
Agriya Dev5
2021-05-18 16:44:50 +05:30
parent d759f28104
commit cdace46f6f
10 changed files with 31 additions and 87 deletions

View File

@@ -52,6 +52,7 @@ class Editor extends EditorStartup {
* @type {"ignore"|"waiting"|"closed"}
*/
this.storagePromptState = 'ignore';
this.svgCanvas = null;
this.isReady = false;
this.customExportImage = false;

View File

@@ -1,4 +1,5 @@
const template = document.createElement('template');
template.innerHTML = `
<style>

View File

@@ -228,6 +228,7 @@ export default {
openSvgForm.method = 'post';
openSvgForm.target = 'output_frame';
// Create import form
const importSvgForm = openSvgForm.cloneNode(true);
importSvgForm.action = importSvgAction;