]> source.dussan.org Git - vaadin-framework.git/commitdiff
#8763 Disable native touch scrolling on iOS 5 devices until #8792 is resolved
authorJohannes Dahlström <johannes.dahlstrom@vaadin.com>
Mon, 14 May 2012 09:19:52 +0000 (09:19 +0000)
committerJohannes Dahlström <johannes.dahlstrom@vaadin.com>
Mon, 14 May 2012 09:19:52 +0000 (09:19 +0000)
svn changeset:23730/svn branch:6.8

src/com/vaadin/terminal/gwt/client/BrowserInfo.java

index 5e496bd05d62115266fe4d2b42d1efd24703aa1c..c8caab6829905ba452715647bc4733fc375cf2d7 100644 (file)
@@ -448,9 +448,10 @@ public class BrowserInfo {
         if (isAndroid() && isWebkit() && getWebkitVersion() >= 534) {
             return false;
         }
-        if (isIOS() && isWebkit() && getWebkitVersion() >= 534) {
-            return false;
-        }
+        // Cannot enable native touch scrolling on iOS 5 until #8792 is resolved
+        // if (isIOS() && isWebkit() && getWebkitVersion() >= 534) {
+        // return false;
+        // }
         return true;
     }