From 284e357fd371ff6447313cfbb479b92c1d1b2040 Mon Sep 17 00:00:00 2001 From: Jacco van den Berg <39033624+LeeLenaleee@users.noreply.github.com> Date: Sat, 20 Feb 2021 14:16:57 +0100 Subject: [PATCH] Fix broken links (#8463) --- docs/docs/developers/plugins.md | 2 +- docs/docs/developers/updates.md | 2 +- docs/docs/getting-started/index.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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