summaryrefslogtreecommitdiff
path: root/StoneIsland/www/js/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-05-06 15:22:04 +0200
committerJules Laplace <julescarbon@gmail.com>2020-05-06 15:22:04 +0200
commita0a1eb402d84be81000ed608d3da40a495cc6d34 (patch)
treeeddd5d6c13005cd9ab6b2c8354573fa617e6de14 /StoneIsland/www/js/index.js
parent9c18073017b5cc2334bf1867c004bfc74ba5a92a (diff)
cart accessibility
Diffstat (limited to 'StoneIsland/www/js/index.js')
-rwxr-xr-xStoneIsland/www/js/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/StoneIsland/www/js/index.js b/StoneIsland/www/js/index.js
index 42cec6f1..8574372d 100755
--- a/StoneIsland/www/js/index.js
+++ b/StoneIsland/www/js/index.js
@@ -22,7 +22,9 @@ var app = (function(){
app.bind = function(){
document.addEventListener('touchmove', function(e){ e.preventDefault() })
- FastClick.attach(document.body)
+ if (!app.accessible) {
+ FastClick.attach(document.body)
+ }
}
app.build = function(){