Merge pull request #2364 from mindrones/site-apidoc-fix

API docs: remove an absolute URL
pull/2366/head
Rich Harris 6 years ago committed by GitHub
commit d73c833b6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -737,7 +737,7 @@ A custom transition function can also return a `tick` function, which is called
{/if}
```
If a transition returns a function instead of a transition object, the function will be called in the next microtask. This allows multiple transitions to coordinate, making [crossfade effects](https://v3.svelte.technology/tutorial/deferred-transitions) possible.
If a transition returns a function instead of a transition object, the function will be called in the next microtask. This allows multiple transitions to coordinate, making [crossfade effects](tutorial/deferred-transitions) possible.
---
@ -997,4 +997,4 @@ The `<svelte:options>` element provides a place to specify per-component compile
```html
<svelte:options tag="my-custom-element"/>
```
```

@ -393,7 +393,7 @@ A `spring` store gradually changes to its target value based on its `stiffness`
As with `tweened` stores, `set` and `update` return a Promise that resolves if the spring settles. The `store.stiffness` and `store.damping` properties can be changed while the spring is in motion, and will take immediate effect.
[See a full example here.](tutorial/spring)
[See a full example on the spring tutorial.](tutorial/spring)
```html
<script>

Loading…
Cancel
Save