Skip to content

Commit

Permalink
[fixed] accidental hash changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jquense committed Oct 29, 2015
1 parent 0351b71 commit 69b092d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/Month.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,8 @@ let MonthView = React.createClass({
})
},

_dateClick(date){
_dateClick(date, e){
e.preventDefault();
this.clearSelection()
notify(this.props.onNavigate, [navigate.DATE, date])
},
Expand Down
3 changes: 2 additions & 1 deletion src/TimeGrid.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ let TimeGrid = React.createClass({
)
},

_headerClick(date){
_headerClick(date, e){
e.preventDefault()
notify(this.props.onNavigate, [navigate.DATE, date])
},

Expand Down

0 comments on commit 69b092d

Please sign in to comment.