We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0a1151 commit 7358072Copy full SHA for 7358072
src/config/bootstrap.ts
@@ -5,6 +5,7 @@ import { AppRoot, UserComponent } from '../components/app/app';
5
import { nativeRaf } from '../util/dom';
6
import { ionicProviders } from './providers';
7
import { Platform } from '../platform/platform';
8
+import { TapClick } from '../components/tap-click/tap-click';
9
const _reflect: any = Reflect;
10
11
@@ -52,6 +53,7 @@ export function ionicPostBootstrap(ngComponentRef: ComponentRef<any>) {
52
53
let platform: Platform = ngComponentRef.injector.get(Platform);
54
platform.setZone(ngComponentRef.injector.get(NgZone));
55
platform.prepareReady();
56
+ ngComponentRef.injector.get(TapClick);
57
58
return ngComponentRef;
59
}
0 commit comments