Kaynağa Gözat

Only activate FastClick and stop keyboard shortcuts on touch devices

Thibaut Courouble 9 yıl önce
ebeveyn
işleme
7d433c162b
1 değiştirilmiş dosya ile 3 ekleme ve 2 silme
  1. 3 2
      assets/javascripts/views/layout/mobile.coffee

+ 3 - 2
assets/javascripts/views/layout/mobile.coffee

@@ -26,8 +26,9 @@ class app.views.Mobile extends app.View
     super
 
   init: ->
-    FastClick.attach @body
-    app.shortcuts.stop()
+    if $.isTouchScreen()
+      FastClick.attach @body
+      app.shortcuts.stop()
 
     $.on @body, 'click', @onClick
     $.on $('._home-link'), 'click', @onClickHome