Home
last modified time | relevance | path

Searched refs:diagramsEditor (Results 1 – 5 of 5) sorted by relevance

/plugin/diagrams/script/
H A DDiagramsEditor.js28 #diagramsEditor = null; field in DiagramsEditor
193 this.#diagramsEditor = document.createElement('iframe');
194 this.#diagramsEditor.id = 'plugin__diagrams-editor';
195 this.#diagramsEditor.src = JSINFO['plugins']['diagrams']['service_url'];
196 document.body.appendChild(this.#diagramsEditor);
206 if (this.#diagramsEditor === null) return;
207 this.#diagramsEditor.remove();
208 this.#diagramsEditor = null;
241 …this.#diagramsEditor.contentWindow.postMessage(JSON.stringify({action: 'load', xml: this.#svg}), '…
247 this.#diagramsEditor.contentWindow.postMessage(
[all …]
H A DDiagramsForm.js69 … const diagramsEditor = new DiagramsEditor(this.onSavedMediaFile.bind(this, attributes.id)); constant
70 diagramsEditor.editMediaFile(attributes.id);
72 const diagramsEditor = new DiagramsEditor(); constant
73 diagramsEditor.editMemory(attributes.url, this.onSaveEmbed.bind(this));
H A Dembed-editbutton.js19 const diagramsEditor = new DiagramsEditor(() => { constant
23 diagramsEditor.editEmbed(
H A Dmediafile-editbutton.js33 const diagramsEditor = new DiagramsEditor(() => { constant
37 diagramsEditor.editMediaFile(image.getAttribute('data-id'));
H A Dembed-toolbar.js47 const diagramsEditor = new DiagramsEditor();
54 diagramsEditor.editMemory(origSvg, svg => {