diff --git a/src/pages/chat/chat.ts b/src/pages/chat/chat.ts index a589215..b4caee5 100644 --- a/src/pages/chat/chat.ts +++ b/src/pages/chat/chat.ts @@ -11,6 +11,7 @@ import { LightboxPage } from '../lightbox/lightbox'; export class ChatPage { profile: any; + tabNavEl: any; constructor(public navCtrl: NavController, private _params: NavParams) { this.profile = this._params.get('profile'); diff --git a/src/pages/grid/grid.ts b/src/pages/grid/grid.ts index 7a1e338..9b9b186 100644 --- a/src/pages/grid/grid.ts +++ b/src/pages/grid/grid.ts @@ -13,6 +13,7 @@ import { ProfilePage } from '../profile/profile'; export class GridPage { profiles: any; + tabNavEl: any; constructor(public navCtrl: NavController, public profileService: ProfileService, private _sanitizer: DomSanitizer) { profileService.load().then((data) => { diff --git a/src/pages/lightbox/lightbox.ts b/src/pages/lightbox/lightbox.ts index 84913ba..74cec6a 100644 --- a/src/pages/lightbox/lightbox.ts +++ b/src/pages/lightbox/lightbox.ts @@ -9,6 +9,7 @@ import { NavController, NavParams } from 'ionic-angular'; export class LightboxPage { image: string; + tabNavEl: any; constructor(public navCtrl: NavController, private _params: NavParams) { this.image = this._params.get('image'); diff --git a/src/pages/messages/messages.ts b/src/pages/messages/messages.ts index 2081c97..8546126 100644 --- a/src/pages/messages/messages.ts +++ b/src/pages/messages/messages.ts @@ -15,6 +15,7 @@ import moment from 'moment'; export class MessagesPage { profiles: any; + tabNavEl: any; constructor(public navCtrl: NavController, public profileService: ProfileService) { profileService.load().then((data) => { diff --git a/src/pages/profile/profile.ts b/src/pages/profile/profile.ts index a29d81c..2f01578 100644 --- a/src/pages/profile/profile.ts +++ b/src/pages/profile/profile.ts @@ -13,6 +13,7 @@ export class ProfilePage { detailsOpen: boolean = false; profile: any; + tabNavEl: any; constructor(public navCtrl: NavController, public navParams: NavParams, private _sanitizer: DomSanitizer) { this.profile = navParams.get('profile');