We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6211e0a commit 2cfc30cCopy full SHA for 2cfc30c
README.md
@@ -125,6 +125,9 @@ class App extends React.Component {
125
const target = event.target || event.srcElement; // IE8
126
console.log('click:', target);
127
}}
128
+ onDoubleClick={(event) => {
129
+ console.log('double click:', target);
130
+ }}
131
onOpenNode={(node) => {
132
console.log('open node:', node);
133
src/index.jsx
@@ -14,6 +14,7 @@ module.exports = class extends React.Component {
14
15
eventHandlers = {
16
onClick: null,
17
+ onDoubleClick: null,
18
onClusterWillChange: null,
19
onClusterDidChange: null,
20
onContentWillUpdate: null,
0 commit comments