mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
docs(config): add missing closed curly bracket
This commit is contained in:
committed by
Brandy Carney
parent
6df2ec08b5
commit
48c7823d2f
@@ -30,7 +30,8 @@ import { isObject, isDefined, isFunction, isArray } from '../util/util';
|
||||
* modalLeave: 'modal-slide-out',
|
||||
* tabsPlacement: 'bottom',
|
||||
* pageTransition: 'ios'
|
||||
* }, {}],
|
||||
* }, {}
|
||||
* )],
|
||||
* bootstrap: [IonicApp],
|
||||
* entryComponents: [ MyApp ],
|
||||
* providers: []
|
||||
@@ -43,16 +44,21 @@ import { isObject, isDefined, isFunction, isArray } from '../util/util';
|
||||
*
|
||||
* ```ts
|
||||
* import { IonicModule } from 'ionic-angular';
|
||||
* ...
|
||||
* IonicModule.forRoot(MyApp, {
|
||||
* tabsPlacement: 'bottom',
|
||||
* platforms: {
|
||||
* ios: {
|
||||
* tabsPlacement: 'top',
|
||||
* }
|
||||
* }
|
||||
* }
|
||||
* ...
|
||||
*
|
||||
* @NgModule({
|
||||
* ...
|
||||
* imports: [
|
||||
* IonicModule.forRoot(MyApp, {
|
||||
* tabsPlacement: 'bottom',
|
||||
* platforms: {
|
||||
* ios: {
|
||||
* tabsPlacement: 'top',
|
||||
* }
|
||||
* }
|
||||
* }, {}
|
||||
* )],
|
||||
* ...
|
||||
* })
|
||||
* ```
|
||||
*
|
||||
* We could also configure these values at a component level. Take `tabsPlacement`,
|
||||
|
||||
Reference in New Issue
Block a user