-
Notifications
You must be signed in to change notification settings - Fork 13.4k
feat(app): move ion-app init logic to initialize function
#29930
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
9be6ad0
e89ed1e
3b5c419
30218e6
7368afc
55df23b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -124,6 +124,14 @@ export interface IonicConfig { | |
| */ | ||
| toastDuration?: number; | ||
|
|
||
| /** | ||
| * The selector that will be used to query the root of the Ionic application. | ||
| * This element is used for things like injecting overlay elements into the DOM and managing focus. | ||
| * | ||
| * @default 'ion-app' | ||
| */ | ||
| appRootSelector?: string; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For context, we needed to add this option because without With this option, devs can specify where the overlay should get injected using any valid CSS selector |
||
|
|
||
| /** | ||
| * Overrides the toggle icon for all `ion-accordion` components. | ||
| */ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.