Created
February 15, 2018 21:36
-
-
Save gregor-srdic/58136644b2fc0fb2767f38f86cd054a5 to your computer and use it in GitHub Desktop.
Including scroll-hide directive in app.module.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@NgModule({ | |
declarations: [ | |
... | |
ScrollHideDirective | |
], | |
imports: [ | |
... | |
IonicModule.forRoot(MyApp, {}) | |
], | |
bootstrap: [IonicApp], | |
entryComponents: [ | |
... | |
], | |
providers: [ | |
... | |
] | |
}) | |
export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment