This website works better with JavaScript.
Home
Explore
Help
Sign In
chemicalcrux
/
macrovision
Watch
1
Star
0
Fork
0
Code
Issues
5
Pull Requests
0
Releases
10
Wiki
Activity
Browse Source
Allow 60 touchmove drags per second
master
Fen Dweller
5 years ago
parent
919efb6883
commit
85839b0927
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
macrovision.js
+ 1
- 1
macrovision.js
View File
@@ -3295,7 +3295,7 @@ document.addEventListener("touchmove", (e) => {
panOffsetY = e.touches[0].clientY;
updateSizes();
panReady = false;
setTimeout(() => panReady=true,
5
0);
setTimeout(() => panReady=true,
1000/6
0);
}
}, { passive: false });
Write
Preview
Loading…
Cancel
Save