Skip to content

Commit

Permalink
Merge pull request #27 from klues/klues/issue#11/fix-animation-editor…
Browse files Browse the repository at this point in the history
…-tap-event-ios

added style "cursor: 'pointer'" which causes iOS to send mouse touch …
  • Loading branch information
ChrisVeigl authored Mar 12, 2018
2 parents e6e1e70 + 80288c2 commit 2aeabfe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Components/DotColumn.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export default class DotColumn extends React.Component<Props> {
cy={index * 25 + 15}
cx={row * 25 + 15}
fill={on ? ON : OFF}
style={{cursor: 'pointer'}}
onMouseDown={mouseDownCallback && mouseDownCallback.bind(this, index, row)}
onMouseUp={mouseUpCallback && mouseUpCallback.bind(this, index, row)}
onMouseOver={mouseOverCallback && mouseOverCallback.bind(this, index, row)}
Expand Down

0 comments on commit 2aeabfe

Please sign in to comment.