TS errors
This commit is contained in:
@@ -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');
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
@@ -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');
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user