Home
last modified time | relevance | path

Searched refs:saveCallback (Results 1 – 2 of 2) sorted by relevance

/plugin/diagrams/script/
H A DDiagramsEditor.js3 * @callback saveCallback
30 /** @type {saveCallback} the method to call for saving the diagram */
31 #saveCallback = null; field in DiagramsEditor
57 this.#saveCallback = (svg) => this.#saveMediaFile(mediaid, svg);
80 this.#saveCallback = (svg) => this.#saveEmbed(pageid, position, length, svg);
108 * @param {saveCallback} callback The callback to call when the editor is closed
112 this.#saveCallback = callback.bind(this);
276 ok = await this.#saveCallback(this.#svg);
/plugin/diagramsnet/lib/js/diagramly/
H A DEditorUi.js15010 var CommentsWindow = function(editorUi, x, y, w, h, saveCallback) argument
15060 function editComment(comment, cdiv, saveCallback, deleteOnCancel) argument
15062 …curEdited = {div: cdiv, comment: comment, saveCallback: saveCallback, deleteOnCancel: deleteOnCanc… property in CommentsWindow.editComment.curEdited
15108 saveCallback(comment);
15284 function addReply(initContent, editIt, saveCallback, doResolve, doReopen) argument
15305 if (saveCallback) saveCallback();
15498 editComment(comment, cdiv, curEdited.saveCallback, curEdited.deleteOnCancel);
15504 editComment(curEdited.comment, curEdited.div, curEdited.saveCallback, curEdited.deleteOnCancel);
15609 saveCallback();
15691 … editComment(curEdited.comment, curEdited.div, curEdited.saveCallback, curEdited.deleteOnCancel);