Skip to content

Commit

Permalink
[update] broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiipylypchuk1991 committed Jun 9, 2024
1 parent c2382e6 commit 39c5ce3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/guides/integration_with_angular.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/integration_with_react.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/integration_with_svelte.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Open the ***EventCalendar.svelte*** file and apply the passed **props** to the E
<div bind:this={container} style="width: 100%; height: 100%;"></div>
~~~

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"
<script>
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/integration_with_vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ Open the ***EventCalendarComponent.vue*** file and apply the passed **props** to
</script>
~~~

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"
<script>
Expand Down

0 comments on commit 39c5ce3

Please sign in to comment.