summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorJohn Ahlroos <john@vaadin.com>2013-03-05 10:00:53 +0200
committerVaadin Code Review <review@vaadin.com>2013-03-05 10:49:12 +0000
commit34a6ebad406a56c13e9d77952d7640a38326a3ca (patch)
treea038b11617f242fdb401b3304a02395e8cd2445d /client
parentb5c6f6cc0c75fa2849ad14dd395af69698440257 (diff)
downloadvaadin-framework-34a6ebad406a56c13e9d77952d7640a38326a3ca.tar.gz
vaadin-framework-34a6ebad406a56c13e9d77952d7640a38326a3ca.zip
Added IE10 touch support detection #9216
Change-Id: I3e5b2266b641901590b7806a04c6ef8c68fbe0f4
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/BrowserInfo.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/BrowserInfo.java b/client/src/com/vaadin/client/BrowserInfo.java
index f0a4ccde0a..bddeddf74c 100644
--- a/client/src/com/vaadin/client/BrowserInfo.java
+++ b/client/src/com/vaadin/client/BrowserInfo.java
@@ -85,6 +85,8 @@ public class BrowserInfo {
if (browserDetails.isChrome()) {
touchDevice = detectChromeTouchDevice();
+ } else if (browserDetails.isIE()) {
+ touchDevice = detectIETouchDevice();
} else {
touchDevice = detectTouchDevice();
}
@@ -100,6 +102,11 @@ public class BrowserInfo {
return ("ontouchstart" in window);
}-*/;
+ private native boolean detectIETouchDevice()
+ /*-{
+ return !!navigator.msMaxTouchPoints;
+ }-*/;
+
private native int getIEDocumentMode()
/*-{
var mode = $wnd.document.documentMode;