From 1b1f295b23d929a73f06a2607a180f5780e72e01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Ha=C3=9Fel?= Date: Mon, 1 Sep 2025 14:24:06 +0200 Subject: [PATCH] moved "Zyklus" button to the right --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index dd614d5..6d2f311 100644 --- a/index.html +++ b/index.html @@ -342,9 +342,9 @@ newSelect(relayIndex, config, "config initial", "initial", [["OFF", "Init: Aus"], ["ON", "Init: Ein"], ["CYCLE", "Init: Zyklus"]]); const switches = newDiv(relay, "flex"); + newButton(relayIndex, switches, "switch switchCycle", "onCount", -1, "Zyklus"); newButton(relayIndex, switches, "switch switchOn", "state", "true", "Ein"); newButton(relayIndex, switches, "switch switchOff", "state", "false", "Aus"); - newButton(relayIndex, switches, "switch switchCycle", "onCount", -1, "Zyklus"); return relay; }