Skip to content

Commit 963e835

Browse files
committed
fix(platform): fire platform ready on app init
1 parent 56c2388 commit 963e835

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/components/app/app-root.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@ export class IonicApp extends Ion implements OnInit {
7878
if (this._config.getBoolean('hoverCSS', true)) {
7979
this.setElementClass('enable-hover', true);
8080
}
81+
82+
// sweet, the app root has loaded!
83+
// which means angular and ionic has fully loaded!
84+
// fire off the platform prepare ready, which could
85+
// have been switched out by any of the platform engines
86+
this._platform.prepareReady();
8187
}
8288

8389
/**

0 commit comments

Comments
 (0)