diff --git a/client/imports/app/app.module.ts b/client/imports/app/app.module.ts index 9c33cda41..5af03120c 100644 --- a/client/imports/app/app.module.ts +++ b/client/imports/app/app.module.ts @@ -16,12 +16,14 @@ import { FileDropModule } from "angular2-file-drop"; import { MOBILE_DECLARATIONS } from "./mobile/index"; import { AppMobileComponent } from "./mobile/app.component.mobile"; import { IonicModule, IonicApp } from "ionic-angular"; +import { PartiesListMobileComponent } from "./mobile/parties-list.component.mobile"; let moduleDefinition; if (Meteor.isCordova) { moduleDefinition = { imports: [ + Ng2PaginationModule, IonicModule.forRoot(AppMobileComponent) ], declarations: [ @@ -34,7 +36,7 @@ if (Meteor.isCordova) { IonicApp ], entryComponents: [ - AppMobileComponent + PartiesListMobileComponent ] } }