From 30cf7d2a811d35250ec4c257e71cec62c9cca12d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?U=C4=9Fur=20Aslan?= Date: Wed, 31 Aug 2022 03:32:28 +0200 Subject: [PATCH] docs: fixed a typo in router/pagetransitions.md --- docs/plugins/router/pagetransitions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins/router/pagetransitions.md b/docs/plugins/router/pagetransitions.md index 5da5d74b..7e0becbe 100644 --- a/docs/plugins/router/pagetransitions.md +++ b/docs/plugins/router/pagetransitions.md @@ -1,6 +1,6 @@ # Page Transitions -If you navigate from one page to another, the default behavior is that the `[visibility](../../../lightning-core-reference/RenderEngine/Elements/Rendering.md#Visibility)` property of the new (incoming) Page is set to `true` and that this same property of the old (outgoing) Page is set to `false`. +If you navigate from one page to another, the default behavior is that the [`visibility`](../../../lightning-core-reference/RenderEngine/Elements/Rendering.md#Visibility) property of the new (incoming) Page is set to `true` and that this same property of the old (outgoing) Page is set to `false`. You can *override* this simple 'hide and show' behavior using the Router plugin. By adding a `pageTransition` method to your Page component, you can apply [default](#Default-Page-Transitions) or [custom](#Custom-Page-Transitions) page transitions.