swapping to webview webrtc setup as temp solution

will build a custom C# webrtc implementation later
This commit is contained in:
2026-03-26 03:32:58 -04:00
parent 3d5c35fb15
commit a5772d7579
9 changed files with 266 additions and 149 deletions

View File

@@ -0,0 +1,10 @@
var toggle = true;
function onClicked()
{
if (toggle)
document.getElementById("header").style.color = "green";
else
document.getElementById("header").style.color = "red";
toggle = !toggle;
}