Remove relevant console log,

This commit is contained in:
Eudes Inácio
2022-04-28 09:32:27 +01:00
parent 3021e8b0e1
commit 2826cea9df
153 changed files with 1001 additions and 1132 deletions
@@ -37,7 +37,6 @@ export class ChatOptionsFeaturesPage implements OnInit {
) {
this.members = this.navParams.get('members');
console.log(this.members);
this.attendees = this.members.map((val)=>{
return {
Name: val.name,
@@ -48,7 +47,6 @@ export class ChatOptionsFeaturesPage implements OnInit {
}
ngOnInit() {
console.log(this.attendees);
}
@@ -66,7 +64,6 @@ export class ChatOptionsFeaturesPage implements OnInit {
}
attachDocument(){
console.log('Anexar Documento');
}
@@ -99,7 +96,6 @@ export class ChatOptionsFeaturesPage implements OnInit {
input.onchange = async () => {
const file = this.fileLoaderService.getFirstFile(input)
console.log(file);
const imageData = await this.fileToBase64Service.convert(file)
this.capturedImage = imageData;
@@ -120,11 +116,11 @@ export class ChatOptionsFeaturesPage implements OnInit {
}
this.chatService.sendMessage(body).subscribe(res=> {
// console.log(res);
//
},(error) => {
});
//console.log(this.capturedImage)
//
};
}
@@ -146,7 +142,6 @@ export class ChatOptionsFeaturesPage implements OnInit {
}
this.chatService.sendMessage(body).subscribe(res=> {
console.log(res);
},(error) => {
@@ -159,7 +154,7 @@ export class ChatOptionsFeaturesPage implements OnInit {
//If group is private call getGroupMembers
if(this.room.t === 'p'){
this.chatService.getGroupMembers(this.roomId).subscribe(res=>{
console.log(res);
this.members = res['members'];
this.showLoader = false;
});
@@ -167,7 +162,7 @@ export class ChatOptionsFeaturesPage implements OnInit {
//Otherwise call getChannelMembers for públic groups
else{
this.chatService.getChannelMembers(this.roomId).subscribe(res=>{
console.log(res);
this.members = res['members'];
this.showLoader = false;
});
@@ -189,13 +184,11 @@ export class ChatOptionsFeaturesPage implements OnInit {
if(res){
const data = res.data;
this.documents.push(data.selected);
console.log(res.data);
}
});
}
async bookMeeting() {
console.log(this.attendees);
if( window.innerWidth <= 800){
this.popoverController.dismiss();