Skip to content

Commit 300b329

Browse files
committed
Update README.md
1 parent 4649d59 commit 300b329

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Designed to change the way that you write JavaScript with the small size goal: a
1010

1111
Current JavaScript libraries hate mobile, they are very big libraries that were built based on requirements of desktop devices, so mobile performance isn't optimal. Doesn't have a good support to touch events or a semantic API that would help the developer to create a good & cool JavaScript
1212

13-
*Current version: [3.0.6]()*
13+
*Current version: [3.0.7]()*
1414

1515

1616
Getting Started
@@ -31,8 +31,7 @@ Touch events
3131
------------
3232
QuoJS supports the following gestures:
3333

34-
* **Tap**
35-
* **Single Tap**
34+
* **Touch**
3635
* **Double-Tap**
3736
* **Hold**
3837
* **2xFingers Tap**
@@ -182,12 +181,10 @@ $$.ready(function() {
182181
Although browsers only support touch events with QuoJS you have numerous events and gestures to help you make a usable project.
183182

184183
```
185-
//Tap event, common event
186-
.tap(function);
184+
//Touch event, common event
185+
.touch(function);
187186
//Long tap event (650 miliseconds)
188187
.hold(function);
189-
//A tap-delay event to combine with others events
190-
.singleTap(function);
191188
//If you send two singleTap
192189
.doubleTap(function);
193190
```

0 commit comments

Comments
 (0)