From 6df2ec08b5604889fe1936950b2c71b03857a55f Mon Sep 17 00:00:00 2001 From: Kevin Ceballos Date: Wed, 12 Oct 2016 11:42:42 -0700 Subject: [PATCH] docs(config): add mode config property to readme (#8017) --- src/config/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/config.ts b/src/config/config.ts index 23c3e16dac..e83bc92921 100644 --- a/src/config/config.ts +++ b/src/config/config.ts @@ -102,6 +102,7 @@ import { isObject, isDefined, isFunction, isArray } from '../util/util'; * | `menuType` | `string` | Type of menu to display. Available options: `"overlay"`, `"reveal"`, `"push"`. | * | `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. | * | `pageTransitionDelay` | `number` | The delay in milliseconds before the transition starts while changing pages. | * | `pickerEnter` | `string` | The name of the transition to use while a picker is presented. |