Skip to content

Commit

Permalink
fix overlay touch event propagation to underlying elements
Browse files Browse the repository at this point in the history
  • Loading branch information
lipp committed Sep 26, 2016
1 parent fd448b4 commit 2bc7ecb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/navigation/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ class Navigation extends React.Component {
/**
* Hide overlay
*/
close = () => {
close = (event) => {
event.preventDefault()
this.setState({
visible: false
})
Expand Down

0 comments on commit 2bc7ecb

Please sign in to comment.