From: Jacco van den Berg <39033624+LeeLenaleee@users.noreply.github.com> Date: Sat, 20 Feb 2021 13:16:57 +0000 (+0100) Subject: Fix broken links (#8463) X-Git-Tag: v3.0.0-beta.11~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=284e357fd371ff6447313cfbb479b92c1d1b2040;p=thirdparty%2FChart.js.git Fix broken links (#8463) --- diff --git a/docs/docs/developers/plugins.md b/docs/docs/developers/plugins.md index 3156ac14c..09417f609 100644 --- a/docs/docs/developers/plugins.md +++ b/docs/docs/developers/plugins.md @@ -118,4 +118,4 @@ var chart = new Chart(ctx, { ## Plugin Core API -Read more about the [existing plugin extension hooks](../jsdoc/IPlugin.html). +Read more about the [existing plugin extension hooks](https://github.com/chartjs/Chart.js/blob/master/types/index.esm.d.ts#L733). diff --git a/docs/docs/developers/updates.md b/docs/docs/developers/updates.md index c5347e4e2..d0f0f0ed1 100644 --- a/docs/docs/developers/updates.md +++ b/docs/docs/developers/updates.md @@ -97,7 +97,7 @@ function updateScale(chart) { } ``` -Code sample for updating options can be found in [toggle-scale-type.html](./../../../samples/latest/scales/toggle-scale-type.html). +Code sample for updating options can be found in [toggle-scale-type.html](https://www.chartjs.org/samples/latest/scales/toggle-scale-type.html). ## Preventing Animations diff --git a/docs/docs/getting-started/index.mdx b/docs/docs/getting-started/index.mdx index c487b3dd0..0f7e1cb39 100644 --- a/docs/docs/getting-started/index.mdx +++ b/docs/docs/getting-started/index.mdx @@ -4,7 +4,7 @@ title: Getting Started Let's get started using Chart.js! -First, we need to have a canvas in our page. It's recommended to give the chart its own container for [responsiveness](../general/responsive.md). +First, we need to have a canvas in our page. It's recommended to give the chart its own container for [responsiveness](../configuration/responsive.md). ```html