From 39c5ce3dcffc00b8fcdeb5d38a2cab0298f83d25 Mon Sep 17 00:00:00 2001 From: Serhii Pylypchuk Date: Sun, 9 Jun 2024 23:49:52 +0400 Subject: [PATCH] [update] broken links --- docs/guides/integration_with_angular.md | 2 +- docs/guides/integration_with_react.md | 2 +- docs/guides/integration_with_svelte.md | 2 +- docs/guides/integration_with_vue.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guides/integration_with_angular.md b/docs/guides/integration_with_angular.md index 6d84ec0..4c1dda6 100644 --- a/docs/guides/integration_with_angular.md +++ b/docs/guides/integration_with_angular.md @@ -160,7 +160,7 @@ ngOnInit() { } ~~~ -You can also use the [`parse()`](/api/methods/parse_method/) method inside the `ngOnInit()` method of Angular to load data into Event Calendar. It will reload data on each applied change. +You can also use the [`parse()`](/api/methods/js_eventcalendar_parse_method/) method inside the `ngOnInit()` method of Angular to load data into Event Calendar. It will reload data on each applied change. ~~~jsx {11} title="event-calendar.component.ts" // importing the data file diff --git a/docs/guides/integration_with_react.md b/docs/guides/integration_with_react.md index ccc2511..eb112e6 100644 --- a/docs/guides/integration_with_react.md +++ b/docs/guides/integration_with_react.md @@ -195,7 +195,7 @@ const EventCalendarComponent = (props) => { export default EventCalendarComponent; ~~~ -You can also use the [`parse()`](/api/methods/parse_method/) method inside the `useEffect()` method of React to load data into Event Calendar: +You can also use the [`parse()`](/api/methods/js_eventcalendar_parse_method/) method inside the `useEffect()` method of React to load data into Event Calendar: ~~~jsx {4,9} title="EventCalendar.jsx" const EventCalendarComponent = (props) => { diff --git a/docs/guides/integration_with_svelte.md b/docs/guides/integration_with_svelte.md index 75e2264..f0c77aa 100644 --- a/docs/guides/integration_with_svelte.md +++ b/docs/guides/integration_with_svelte.md @@ -188,7 +188,7 @@ Open the ***EventCalendar.svelte*** file and apply the passed **props** to the E
~~~ -You can also use the [`parse()`](/api/methods/parse_method/) method inside the `onMount()` method of Svelte to load data into Event Calendar: +You can also use the [`parse()`](/api/methods/js_eventcalendar_parse_method/) method inside the `onMount()` method of Svelte to load data into Event Calendar: ~~~html {3-4,8-11} title="App.svelte" ~~~ -You can also use the [`parse()`](/api/methods/parse_method/) method inside the `mounted()` method of Vue to load data into Event Calendar: +You can also use the [`parse()`](/api/methods/js_eventcalendar_parse_method/) method inside the `mounted()` method of Vue to load data into Event Calendar: ~~~html {7} title="EventCalendarComponent.vue"