Skip to content

Commit 727a0b6

Browse files
committed
Docs: link fixes.
1 parent 5eba946 commit 727a0b6

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

docs/content/reference/reference.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# Vizzu JS Library Reference
22

3-
This is the API reference document of the Vizzu JS library.
4-
It provides information about every detail of the API.
5-
This works best for users who already have at least a basic
3+
This is the API reference document of the Vizzu JS library. It provides information
4+
about every detail of the API. This works best for users who already have a basic
65
understanding of the Vizzu Library and its logic.
76

87
In case you're just getting started with Vizzu, we strongly recommend visiting our
@@ -29,7 +28,6 @@ interface, which contains the configuration of the chart, the underlying data, a
2928
* [Styles.Marker](interfaces/Styles.Marker.html)
3029
* [Styles.Axis](interfaces/Styles.Axis.html)
3130
* [Styles.Legend](interfaces/Styles.Legend.html)
32-
* [Styles.Title](interfaces/Styles.Title.html)
3331
* [Styles.Tooltip](interfaces/Styles.Tooltip.html)
3432
3533

docs/content/tutorial/0-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Import the library into a JavaScript file or script tag in your web page
1616

1717
```html
1818
<script type="module">
19-
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected]/vizzu.js';
19+
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected]/dist/vizzu.min.js';
2020
</script>
2121
```
2222

docs/generator/example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class Example
6565
+ '</pre>';
6666
scriptElement.innerHTML += `
6767
<script type="module">
68-
import Vizzu from 'https://vizzu-lib-main.storage.googleapis.com/lib/vizzu.js';
68+
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected]/dist/vizzu.min.js';
6969
${this.imports}
7070
7171
let chart = new Vizzu('vizzuCanvas');

docs/generator/index.in.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<a href='https://github.com/vizzuhq/vizzu-lib'>
2424
<img class='logo' id='logo-github' src='images/github-logo.svg' width='30' height='30' />
2525
</a>
26-
<a href='https://join.slack.com/t/vizzu-community/signup'>
26+
<a href='https://join.slack.com/t/vizzu-community/shared_invite/zt-w2nqhq44-2CCWL4o7qn2Ns1EFSf9kEg'>
2727
<img class='logo' id='logo-slack' src='images/slack-logo.svg' width='30' height='30' />
2828
</a>
2929
</div>

docs/script/tutorial/vizzu-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Vizzu from 'https://vizzu-lib-main.storage.googleapis.com/lib/vizzu.js';
1+
import Vizzu from 'https://cdn.jsdelivr.net/npm/[email protected]/dist/vizzu.min.js';
22
//import Vizzu from '/example/lib/vizzu.js';
33
import getBase from './base.js';
44
import data from './data.js'

0 commit comments

Comments
 (0)