Skip to content
Snippets Groups Projects
Commit cc5e1e82 authored by Hugo SUBTIL's avatar Hugo SUBTIL
Browse files

fix: remove console.log

parent c62ac7e8
No related branches found
No related tags found
1 merge request!31Recette
......@@ -16,7 +16,6 @@ export class ButtonComponent implements OnInit {
ngOnInit(): void {}
public doAction(): void {
console.log('in do action');
this.action.emit();
}
}
......@@ -38,7 +38,6 @@ export class CardComponent implements OnInit {
}
public cardClicked(): void {
console.log(this.structure);
this.showDetails.emit(this.structure);
}
......
......@@ -49,7 +49,6 @@ export class StructureListComponent implements OnChanges {
public onScrollDown(event): void {
if (event.target.offsetHeight + event.target.scrollTop >= event.target.scrollHeight - 100) {
console.log('loading...');
}
if (event.target.offsetHeight + event.target.scrollTop >= event.target.scrollHeight - 50) {
this.loadMoreStructures.emit();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment