From 05f1e24cb648bb6f2c02f02c55bd5388e9e627df Mon Sep 17 00:00:00 2001 From: Quentin Date: Wed, 15 Mar 2017 08:31:18 -0700 Subject: [PATCH] docs(config): update page-transition Closes #10789 Updated page transition animation sample and description. --- src/config/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/config.ts b/src/config/config.ts index ddac74ab4e..65a5d0ee8f 100644 --- a/src/config/config.ts +++ b/src/config/config.ts @@ -29,7 +29,7 @@ import { isObject, isDefined, isFunction, isArray } from '../util/util'; * modalEnter: 'modal-slide-in', * modalLeave: 'modal-slide-out', * tabsPlacement: 'bottom', - * pageTransition: 'ios' + * pageTransition: 'ios-transition' * }, {} * )], * bootstrap: [IonicApp], @@ -110,7 +110,7 @@ import { isObject, isDefined, isFunction, isArray } from '../util/util'; * | `modalEnter` | `string` | The name of the transition to use while a modal is presented. | * | `modalLeave` | `string` | The name of the transition to use while a modal is dismiss. | * | `mode` | `string` | The mode to use throughout the application. | - * | `pageTransition` | `string` | The name of the transition to use while changing pages. | + * | `pageTransition` | `string` | The name of the transition to use while changing pages. Available options: `"ios-transition"`, `"md-transition"`, `"wp-transition"`. | * | `pickerEnter` | `string` | The name of the transition to use while a picker is presented. | * | `pickerLeave` | `string` | The name of the transition to use while a picker is dismissed. | * | `popoverEnter` | `string` | The name of the transition to use while a popover is presented. |