From 5ec9319b3f20e03d8a6822a44b1ab91069c227ff Mon Sep 17 00:00:00 2001
From: "p.vanderwilt"
Date: Thu, 24 Jul 2025 12:13:16 +0200
Subject: [PATCH] Add position field and proper logging configuration
---
advancedReactor.html | 9 +++++++++
advancedReactor.js | 2 +-
src/nodeClass.js | 7 ++++++-
src/specificClass.js | 2 +-
4 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/advancedReactor.html b/advancedReactor.html
index 3bdbe31..7d1f09f 100644
--- a/advancedReactor.html
+++ b/advancedReactor.html
@@ -107,6 +107,11 @@
window.EVOLV.nodes['advancedReactor'].loggerMenu.saveEditor(this);
}
+ // save position field
+ if (window.EVOLV?.nodes?.measurement?.positionMenu?.saveEditor) {
+ window.EVOLV.nodes.rotatingMachine.positionMenu.saveEditor(this);
+ }
+
let volume = parseFloat($("#node-input-volume").typedInput("value"));
if (isNaN(volume) || volume <= 0) {
RED.notify("Fluid volume not set correctly", {type: "error"});
@@ -215,6 +220,10 @@
+
+
+
+