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