Skip to content

Commit 7718c65

Browse files
Fix dead links
This fix #19.
1 parent b39deee commit 7718c65

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

docs/api/modules/burst/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Burst
22

33
- [CodePen Example](https://codepen.io/sol0mka/pen/JKWKVR?editors=0010)
4-
- [ShapeSwirl API](../shape-swirl.md)
5-
- [Stagger Strings API](../syntax/stagger.md)
6-
- [Property Maps API](../syntax/property-maps.md)
7-
- [Tween API](../tweens/tween.md)
8-
- [Timeline API](../tweens/timeline.md)
4+
- [ShapeSwirl API](/api/modules/shape-swirl/)
5+
- [Stagger Strings API](/api/utils/stagger.md)
6+
- [Property Maps API](/api/syntax/property-maps.md)
7+
- [Tween API](/api/tweens/tween.md)
8+
- [Timeline API](/api/tweens/timeline.md)
99

1010
Full API reference:
1111

@@ -164,8 +164,8 @@ const burst = new mojs.Burst({
164164
```
165165

166166
- [CodePen Example](https://codepen.io/sol0mka/pen/JKWKVR?editors=0010)
167-
- [ShapeSwirl API](../shape-swirl.md)
168-
- [Stagger Strings API](../syntax/stagger.md)
169-
- [Property Maps API](../syntax/property-maps.md)
170-
- [Tween API](../tweens/tween.md)
171-
- [Timeline API](../tweens/timeline.md)
167+
- [ShapeSwirl API](/api/modules/shape-swirl/)
168+
- [Stagger Strings API](/api/utils/stagger.md)
169+
- [Property Maps API](/api/syntax/property-maps.md)
170+
- [Tween API](/api/tweens/tween.md)
171+
- [Timeline API](/api/tweens/timeline.md)

docs/api/modules/html/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## References:
66

77
- [CodePen Example](https://codepen.io/sol0mka/pen/b8831849500f0d5cd0ab5691ebe17873?editors=0010)
8-
- [Tween API](../tweens/tween.md)
8+
- [Tween API](/api/tweens/tween.md)
99

1010
## Contents:
1111

@@ -249,4 +249,4 @@ This makes `mojs` animations ultimately flexible.
249249

250250
References:
251251

252-
- [Tween API](../tweens/tween.md)
252+
- [Tween API](/api/tweens/tween.md)

docs/api/modules/shape-swirl/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ShapeSwirl
22

33
- [CodePen Example](https://codepen.io/sol0mka/pen/pbebwQ?editors=0010)
4-
- [Shape API](../shape/README.md)
5-
- [Tween API](../tweens/tween.md)
4+
- [Shape API](/api/modules/shape/README.md)
5+
- [Tween API](/api/tweens/tween.md)
66

77
Full API reference:
88

@@ -94,5 +94,5 @@ const shapeSwirl = new mojs.ShapeSwirl({
9494
```
9595

9696
- [CodePen Example](https://codepen.io/sol0mka/pen/pbebwQ?editors=0010)
97-
- [Shape API](shape.md)
98-
- [Tween API](../tweens/tween.md)
97+
- [Shape API](/api/modules/shape/README.md)
98+
- [Tween API](/api/tweens/tween.md)

docs/api/modules/shape/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Shape
22

33
- [CodePen Example](https://codepen.io/sol0mka/pen/bbd4fe6c1ac8519c76bc18828844e2c3)
4-
- [Tween API](../tweens/tween.md)
4+
- [Tween API](/api/tweens/tween.md)
55

66
Full API reference:
77

@@ -235,4 +235,4 @@ const shape = new mojs.Shape({
235235
```
236236

237237
- [CodePen Example](https://codepen.io/sol0mka/pen/bbd4fe6c1ac8519c76bc18828844e2c3)
238-
- [Tween API](./tweens/tween.md)
238+
- [Tween API](/api/tweens/tween.md)

docs/api/tweens/timeline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Timeline
22

33
- [CodePen Example](https://codepen.io/sandstedt/pen/bGeMqzw?editors=0011)
4-
- [Tween API](tween.md)
4+
- [Tween API](/api/tweens/tween.md)
55

66
`Timeline` inherits all properties, callbacks and public methods from `Tween`, the only difference between `Tween` and `Timeline` is that the later doesn't have the `duration` property - it gets calculated from durations/delays of children. Also `Timeline` add two public methods that can recieve children. Please check the Tween API for reference.
77

@@ -39,4 +39,4 @@ const timeline = new mojs.Timeline({
3939
```
4040

4141
- [CodePen Example](https://codepen.io/sandstedt/pen/bGeMqzw?editors=0011)
42-
- [Tween API](tween.md)
42+
- [Tween API](/api/tweens/tween.md)

docs/api/tweens/tween.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Tween
22

33
- [CodePen Example](https://codepen.io/sandstedt/pen/ZEOoePr?editors=0011)
4-
- [Timeline](timeline.md)
4+
- [Timeline](/api/tweens/timeline.md)
55

66
Full API reference:
77

@@ -136,4 +136,4 @@ const tween = new mojs.Tween({
136136
```
137137

138138
- [CodePen Example](https://codepen.io/sandstedt/pen/ZEOoePr?editors=0011)
139-
- [Timeline](timeline.md)
139+
- [Timeline](/api/tweens/timeline.md)

0 commit comments

Comments
 (0)