We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9a6805 commit 56e285cCopy full SHA for 56e285c
dygraphs-gwt/src/main/java/com/github/timeu/dygraphsgwt/client/callbacks/PointClickCallback.java
@@ -1,5 +1,6 @@
1
package com.github.timeu.dygraphsgwt.client.callbacks;
2
3
+import com.google.gwt.dom.client.NativeEvent;
4
import com.google.gwt.event.dom.client.MouseEvent;
5
import jsinterop.annotations.JsFunction;
6
@@ -15,5 +16,5 @@ public interface PointClickCallback {
15
16
* @param event Mousevent
17
* @param point Point that was clicked
18
*/
- void onClick(MouseEvent event,Point point);
19
+ void onClick(NativeEvent event, Point point);
20
}
0 commit comments