summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/www/js/lib/etc/scroll.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-09-10 14:35:21 +0200
committerJules Laplace <julescarbon@gmail.com>2020-09-10 14:35:21 +0200
commit3cf5e5a97afe8fc7877b528cf19130bef0d68bad (patch)
treeb2ba8044cb293716af3f3330903aea1d7b6bfcd9 /StoneIsland/platforms/ios/www/js/lib/etc/scroll.js
parent50bf754c8742a5b7d054b9d93f9d4e37c1641a01 (diff)
build the app
Diffstat (limited to 'StoneIsland/platforms/ios/www/js/lib/etc/scroll.js')
-rw-r--r--StoneIsland/platforms/ios/www/js/lib/etc/scroll.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/StoneIsland/platforms/ios/www/js/lib/etc/scroll.js b/StoneIsland/platforms/ios/www/js/lib/etc/scroll.js
index 253921e1..51e14a01 100644
--- a/StoneIsland/platforms/ios/www/js/lib/etc/scroll.js
+++ b/StoneIsland/platforms/ios/www/js/lib/etc/scroll.js
@@ -22,8 +22,9 @@ function NativeScroll(el) {
}
function ScrollFactory (el, opt) {
- if (accessibility.voiceOver) {
- return NativeScroll(el)
- }
- return new IScroll(el, opt)
+ return NativeScroll(el)
+ // if (accessibility.voiceOver) {
+ // return NativeScroll(el)
+ // }
+ // return new IScroll(el, opt)
}