From cf3a563983e0f66474aaa6a78112cb8fa73f5498 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 19 Nov 2015 12:10:47 -0500 Subject: [PATCH] docs(config): updated platform to platforms and removed unnecessary imports --- ionic/config/config.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ionic/config/config.ts b/ionic/config/config.ts index 83e9e18847..494f513193 100644 --- a/ionic/config/config.ts +++ b/ionic/config/config.ts @@ -13,7 +13,6 @@ import {isObject, isDefined, isFunction, isArray, extend} from '../util/util'; * Config lets you change multiple or a single value in an apps mode configuration. Things such as tab placement, icon changes, and view animations can be set here. * * ```ts - * import {Config} from 'ionic/ionic'; * @App({ * template: `` * config: { @@ -29,12 +28,11 @@ import {isObject, isDefined, isFunction, isArray, extend} from '../util/util'; * * Config can be overwritting at multiple levels, allowing deeper configuration. Taking the example from earlier, we can override any setting we want based on a platform. * ```ts - * import {Config} from 'ionic/ionic'; * @App({ * template: `` * config: { * 'tabbarPlacement': 'bottom', - * platform: { + * platforms: { * ios: { * 'tabbarPlacement': 'top', * }