We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f41755 commit 3345b33Copy full SHA for 3345b33
README.md
@@ -20,14 +20,16 @@ A gwtQuery plugin for adding gesture events.
20
// Observe attribute changes in all elements matching the selector
21
$(selector)
22
.as(Gesture.Gesture)
23
- .on("", new Function() {
24
- public boolean f(List<MutationRecord> mutations) {
25
- console.log(mutations.get(0).type());
+ .on("tap", new Function() {
+ public boolean f(Event ev) {
+ Options o = arguments(0);
26
+ console.log(o.description());
27
+ return true;
28
}
29
});
30
31
```
-3. gQuery Gesture plugin is a port of the jGesture plugin at https://jgestures.codeplex.com/
32
+3. gQuery Gesture plugin is a gwt port of the jGesture plugin at https://jgestures.codeplex.com/
33
34
35
## Mobile compatibility
0 commit comments