TS errors

This commit is contained in:
2018-03-08 00:53:54 -05:00
parent 996b4097fd
commit 87d5b85c55
5 changed files with 5 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ import { LightboxPage } from '../lightbox/lightbox';
export class ChatPage { export class ChatPage {
profile: any; profile: any;
tabNavEl: any;
constructor(public navCtrl: NavController, private _params: NavParams) { constructor(public navCtrl: NavController, private _params: NavParams) {
this.profile = this._params.get('profile'); this.profile = this._params.get('profile');

View File

@@ -13,6 +13,7 @@ import { ProfilePage } from '../profile/profile';
export class GridPage { export class GridPage {
profiles: any; profiles: any;
tabNavEl: any;
constructor(public navCtrl: NavController, public profileService: ProfileService, private _sanitizer: DomSanitizer) { constructor(public navCtrl: NavController, public profileService: ProfileService, private _sanitizer: DomSanitizer) {
profileService.load().then((data) => { profileService.load().then((data) => {

View File

@@ -9,6 +9,7 @@ import { NavController, NavParams } from 'ionic-angular';
export class LightboxPage { export class LightboxPage {
image: string; image: string;
tabNavEl: any;
constructor(public navCtrl: NavController, private _params: NavParams) { constructor(public navCtrl: NavController, private _params: NavParams) {
this.image = this._params.get('image'); this.image = this._params.get('image');

View File

@@ -15,6 +15,7 @@ import moment from 'moment';
export class MessagesPage { export class MessagesPage {
profiles: any; profiles: any;
tabNavEl: any;
constructor(public navCtrl: NavController, public profileService: ProfileService) { constructor(public navCtrl: NavController, public profileService: ProfileService) {
profileService.load().then((data) => { profileService.load().then((data) => {

View File

@@ -13,6 +13,7 @@ export class ProfilePage {
detailsOpen: boolean = false; detailsOpen: boolean = false;
profile: any; profile: any;
tabNavEl: any;
constructor(public navCtrl: NavController, public navParams: NavParams, private _sanitizer: DomSanitizer) { constructor(public navCtrl: NavController, public navParams: NavParams, private _sanitizer: DomSanitizer) {
this.profile = navParams.get('profile'); this.profile = navParams.get('profile');