From 963e83514f6df9205dd28158222ee38d7c9b1a9d Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Thu, 22 Sep 2016 14:11:06 -0500 Subject: [PATCH] fix(platform): fire platform ready on app init --- src/components/app/app-root.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/app/app-root.ts b/src/components/app/app-root.ts index ee4560c996..ec7daee248 100644 --- a/src/components/app/app-root.ts +++ b/src/components/app/app-root.ts @@ -78,6 +78,12 @@ export class IonicApp extends Ion implements OnInit { if (this._config.getBoolean('hoverCSS', true)) { this.setElementClass('enable-hover', true); } + + // sweet, the app root has loaded! + // which means angular and ionic has fully loaded! + // fire off the platform prepare ready, which could + // have been switched out by any of the platform engines + this._platform.prepareReady(); } /**