Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
style(component): remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexpeschel authored and lkuechler committed Dec 14, 2017
1 parent f86d353 commit adfbfb2
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/component/container/elementWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,36 +53,31 @@ export class ElementWrapper extends React.Component<ElementWrapperProps, Element
this.setState({
highlight: true
});
console.log('handleDragEnter');
}

private handleDragLeave(e: React.DragEvent<HTMLElement>): void {
this.setState({
highlight: false
});
console.log('handleDragLeave');
}

private handleDragDrop(e: React.DragEvent<HTMLElement>): void {
this.setState({
highlight: false
});
console.log('handleDragDrop');
this.props.handleDragDrop && this.props.handleDragDrop(e);
}

private handleDragEnterForChild(e: React.DragEvent<HTMLElement>): void {
this.setState({
highlightPlaceholder: true
});
console.log('handleDragEnterForChild');
}

private handleDragLeaveForChild(e: React.DragEvent<HTMLElement>): void {
this.setState({
highlightPlaceholder: false
});
console.log('handleDragLeaveForChild');
}

private handleDragDropForChild(e: React.DragEvent<HTMLElement>): void {
Expand Down

0 comments on commit adfbfb2

Please sign in to comment.