Browse Source

Disabled touch for all

master
Igor Zhukov 9 years ago
parent
commit
c6f6e0a86a
  1. 2
      app/js/lib/config.js

2
app/js/lib/config.js

@ -42,7 +42,7 @@ Config.Navigator = { @@ -42,7 +42,7 @@ Config.Navigator = {
(navigator.userAgent || '').toLowerCase().indexOf('mac') != -1,
retina: window.devicePixelRatio > 1,
ffos: navigator.userAgent.search(/mobi.+Gecko/i) != -1,
touch: true,//screen.width <= 768 || ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch,
touch: screen.width <= 768 || ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch,
mobile: screen.width && screen.width < 480 || navigator.userAgent.search(/iOS|iPhone OS|Android|BlackBerry|BB10|Series ?[64]0|J2ME|MIDP|opera mini|opera mobi|mobi.+Gecko|Windows Phone/i) != -1
};

Loading…
Cancel
Save