Skip to content

Commit

Permalink
Merge pull request #46 from Roll20/broken-links-on-the-initrelay-page
Browse files Browse the repository at this point in the history
Broken links on the initrelay page
  • Loading branch information
Alicekb committed Jul 22, 2024
2 parents 388806c + 1795c2d commit 0226aad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 14 deletions.
7 changes: 1 addition & 6 deletions config/_default/menus/menus.en.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,4 @@
pre = '<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-github" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"></path></svg>'
url = "https://github.com/Roll20/beacon-docs"
post = "v0.1.0"
weight = 30

[[footer]]
name = "Privacy Policy"
url = "https://help.roll20.net/hc/en-us/articles/360037770793-Terms-of-Service-and-Privacy-Policy"
weight = 10
weight = 30
7 changes: 1 addition & 6 deletions config/_default/menus/menus.nl.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,4 @@
pre = '<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-brand-github" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5"></path></svg>'
url = "https://github.com/Roll20/beacon-docs"
post = "v0.1.0"
weight = 30

[[footer]]
name = "Privacy Policy"
url = "https://help.roll20.net/hc/en-us/articles/360037770793-Terms-of-Service-and-Privacy-Policy"
weight = 10
weight = 30
4 changes: 2 additions & 2 deletions content/docs/gettingstarted/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ This will install the Beacon SDK package to your project's `package.json` file.

The Beacon package exports various utilities you can use in your application. The main one that needs to be setup to enable the connection between Beacon SDK and Roll20 is `initRelay`.

Ideally you would want to call this when your sheet is initalizing, and it is the function where you will define sheet actions, computed values, and how the sheet will response to or send character data changes. [visit the initRelay page for a more detailed breakdown.](/docs/components/initrelay/)
Ideally you would want to call this when your sheet is initalizing, and it is the function where you will define sheet actions, computed values, and how the sheet will response to or send character data changes. [visit the initRelay page for a more detailed breakdown.](/beacon-docs/docs/components/initrelay/)

Add the following to your project:
```javascript
Expand All @@ -77,7 +77,7 @@ const dispatch = initRelay({
})
```

`initRelay` returns a dispatch function that allows you to call methods or send changes from the sheet to Roll20. Check out the page on [dispatch](/docs/components/dispatch/) to learn more about the different methods.
`initRelay` returns a dispatch function that allows you to call methods or send changes from the sheet to Roll20. Check out the page on [dispatch](/beacon-docs/docs/components/dispatch/) to learn more about the different methods.

## Step 3: Settings up the Roll20 tabletop sandbox

Expand Down

0 comments on commit 0226aad

Please sign in to comment.