Quick fixes
This commit is contained in:
@@ -12,8 +12,8 @@ export class ChatPage {
|
|||||||
|
|
||||||
profile: any;
|
profile: any;
|
||||||
|
|
||||||
constructor(public navCtrl: NavController, private navParams: NavParams) {
|
constructor(public navCtrl: NavController, private _params: NavParams) {
|
||||||
this.profile = navParams.get('profile');
|
this.profile = this._params.get('profile');
|
||||||
}
|
}
|
||||||
|
|
||||||
closeChat(event) {
|
closeChat(event) {
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ export class LightboxPage {
|
|||||||
|
|
||||||
image: string;
|
image: string;
|
||||||
|
|
||||||
constructor(public navCtrl: NavController, private navParams: NavParams) {
|
constructor(public navCtrl: NavController, private _params: NavParams) {
|
||||||
this.image = navParams.get('image');
|
this.image = this._params.get('image');
|
||||||
}
|
}
|
||||||
|
|
||||||
close(event) {
|
close(event) {
|
||||||
|
|||||||
Reference in New Issue
Block a user