From ba45b7a5f60d7ed65aab378c84b4c0e6c2770073 Mon Sep 17 00:00:00 2001 From: "Daniel R. Kumor" Date: Wed, 10 Mar 2021 19:49:39 -0500 Subject: [PATCH] Added comment about safari In #22, an issue with Safari was shown - while it isn't fixed, the suggested workaround is given in a note on the tutorials. --- examples/webrtc/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/examples/webrtc/README.md b/examples/webrtc/README.md index d90b3d4..7410f79 100644 --- a/examples/webrtc/README.md +++ b/examples/webrtc/README.md @@ -132,6 +132,14 @@ app.on_shutdown.append(cleanup) web.run_app(app) ``` +```eval_rst +.. note:: + If you use Safari, you might want to add an additional adapter script to the head element `to fix connection issues `_ when running locally:: + + + +``` + The above example establishes a WebRTC connection from the browser to python, and sends a "Button Clicked!" message to python each time the button is clicked in the browser.