From 25a925001b5fc303fcc4d07ef33567278ac15e47 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Mon, 6 May 2024 00:22:06 +0300 Subject: [PATCH] Update spline_editor.js --- web/js/spline_editor.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/js/spline_editor.js b/web/js/spline_editor.js index aa33843..6966de4 100644 --- a/web/js/spline_editor.js +++ b/web/js/spline_editor.js @@ -187,8 +187,9 @@ app.registerExtension({ this.splineEditor.parentEl.className = "spline-editor"; this.splineEditor.parentEl.id = `spline-editor-${this.uuid}` element.appendChild(this.splineEditor.parentEl); - - chainCallback(this, "onGraphConfigured", function() { + + chainCallback(this, "onConfigure", function() { + console.log(this) createSplineEditor(this); });