Skip to content

Commit

Permalink
fix(iframe.md): ice servers anchor attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
hristoterezov committed Apr 12, 2024
1 parent 5d52b24 commit 00209bf
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docs/dev-guide/iframe.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,18 @@ var options = {
var api = new JitsiMeetExternalAPI(domain, options);
```

<a name="ice-servers"></a>You can modify the default ice servers configuration with the **`iceServers`** property (**NOTE: This property is currently experimental and may be removed in the future!**) using the following:
export const Anchor = ({children, name}) => (
<a
name = { name }
id = { name }
href = { "#" + name }>
{children}
</a>
);

<Anchor name = { "ice-servers" }></Anchor>You can modify the default ice servers configuration with the **`iceServers`** property (**NOTE: This property is currently experimental and may be removed in the future!**) using the following:


```javascript
var domain = "meet.jit.si";
var options = {
Expand Down

0 comments on commit 00209bf

Please sign in to comment.