Browse Source

Detect Windows 8 tablets as touchdevice also.

pull/2350/head
Ruud 12 years ago
parent
commit
5bf3b929a2
  1. 2
      couchpotato/static/scripts/couchpotato.js

2
couchpotato/static/scripts/couchpotato.js

@ -32,7 +32,7 @@
self.c.addEvent('click:relay(a[href^=http])', self.openDerefered.bind(self));
// Check if device is touchenabled
self.touch_device = 'ontouchstart' in document.documentElement;
self.touch_device = 'ontouchstart' in window || navigator.msMaxTouchPoints;
if(self.touch_device)
self.c.addClass('touch_enabled');

Loading…
Cancel
Save