diff options
author | Roger Zanoni <rzanoni@igalia.com> | 2023-12-28 20:07:05 -0300 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-01-29 12:07:20 +0000 |
commit | c323ab8fde212120d8d1914d453afeb55b3576e5 (patch) | |
tree | 2f3565da1e623d69297b00d2a5e1e2b261692810 /src/index.html | |
parent | 5f1b6075982b872b5db4e2195e53d19529278d5c (diff) |
Update HVAC app to use grpc-web instead of websockets
Adapt the HTML5 applications to use kuksa.val service
Bug-AGL: SPEC-4599
Signed-off-by: Roger Zanoni <rzanoni@igalia.com>
Change-Id: I3e36a6c08041db8fb59fd7f20497c1c156bbb2f7
Diffstat (limited to 'src/index.html')
-rw-r--r-- | src/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.html b/src/index.html index c8a5eed..ce61ba0 100644 --- a/src/index.html +++ b/src/index.html @@ -27,7 +27,7 @@ </div> <div class="fanSpeed"> <div class="fanSpeedContainer"> - <input id="FanSpeed" type="range" min="1" value="1" max="100" onchange="FANSPEED.set()"> + <input id="FanSpeed" type="range" min="1" value="1" max="100" onchange="FANSPEED.set(this.value)"> <progress value="1" max="100"></progress> </div> <div class="label"> |