From 108425f27fcbd283ad4f2cfcc11dc452393148aa Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Wed, 6 Jan 2021 21:21:20 +0000 Subject: [PATCH] ref #5 : fix protocol id to be parsed as int --- examples/ggwave-wasm/index-tmpl.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ggwave-wasm/index-tmpl.html b/examples/ggwave-wasm/index-tmpl.html index ddc7ae3..1bec239 100644 --- a/examples/ggwave-wasm/index-tmpl.html +++ b/examples/ggwave-wasm/index-tmpl.html @@ -142,7 +142,7 @@ } function selectConfig(configId) { - protocolId = configId; + protocolId = parseInt(configId); } function updateScroll(sName) {