Remove console output

This commit is contained in:
Simon Hanna 2018-09-03 22:40:34 +02:00
parent af621fe9ee
commit 48568a9790
4 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@ export class OpenLPAlertComponent {
onSubmit() {
console.log('submitted: ', this.alert);
this.openlpService.showAlert(this.alert).subscribe(res => console.log(res));
this.openlpService.showAlert(this.alert).subscribe(res => {});
this.alert = '';
}
}

View File

@ -27,11 +27,11 @@ export class OpenLPSearchComponent implements OnInit {
}
sendLive(id) {
this.openlpService.sendItemLive(this.currentPlugin, id).subscribe(res => console.log(res));
this.openlpService.sendItemLive(this.currentPlugin, id).subscribe(res => {});
}
addToService(id) {
this.openlpService.addItemToService(this.currentPlugin, id).subscribe(res => console.log(res));
this.openlpService.addItemToService(this.currentPlugin, id).subscribe(res => {});
}
ngOnInit() {

View File

@ -18,7 +18,7 @@ export class OpenLPServiceComponent implements OnInit {
}
onItemSelected(item) {
this.openlpService.setServiceItem(item).subscribe(res => console.log(res));
this.openlpService.setServiceItem(item).subscribe(res => {});
this.router.navigate(['slides']);
}

View File

@ -17,7 +17,7 @@ export class OpenLPSlidesComponent implements OnInit {
}
onSlideSelected(item) {
this.openlpService.setSlide(item).subscribe(res => console.log(res));
this.openlpService.setSlide(item).subscribe(res => {});
}
getSlides() {