docs(config): minor config updates

This commit is contained in:
Adam Bradley
2015-11-19 10:55:03 -06:00
parent 0a1f63d3fb
commit ed022cf828

View File

@ -33,10 +33,10 @@ import {isObject, isDefined, isFunction, isArray, extend} from '../util/util';
* @App({ * @App({
* template: `<ion-nav [root]="root"></ion-nav>` * template: `<ion-nav [root]="root"></ion-nav>`
* config: { * config: {
* 'tabbarPlacement': 'bottom', * tabbarPlacement: 'bottom',
* platform: { * platform: {
* ios: { * ios: {
* 'tabbarPlacement': 'top', * tabbarPlacement: 'top',
* } * }
* } * }
* } * }
@ -47,7 +47,7 @@ import {isObject, isDefined, isFunction, isArray, extend} from '../util/util';
* *
* ```html * ```html
* <ion-tabs tabbar-placement="top"> * <ion-tabs tabbar-placement="top">
* <ion-tab tab-title="Dash" tab-icon="pulse" [root]="DashRoot"></ion-tab> * <ion-tab tab-title="Dash" tab-icon="pulse" [root]="tabRoot"></ion-tab>
* </ion-tabs> * </ion-tabs>
* ``` * ```
* *