]> source.dussan.org Git - vaadin-framework.git/commitdiff
Enable long tap emulation on iOS for context clicks (#8565) (#8570)
authorTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>
Wed, 15 Feb 2017 16:59:52 +0000 (18:59 +0200)
committerHenri Sara <henri.sara@gmail.com>
Wed, 15 Feb 2017 16:59:52 +0000 (18:59 +0200)
Fix release notes mention of context click events

all/src/main/templates/release-notes.html
client/src/main/java/com/vaadin/client/ui/AbstractComponentConnector.java

index c70b0000da518c0e6a3ed87a336f5dbf60ce83bf..4a012694fbf2d5cee01de64d0863aede1534e021 100644 (file)
@@ -94,6 +94,8 @@
                 (<a href="http://dev.vaadin.com/ticket/19683">#19683</a>)</li>
             <li>Vaadin can now automatically use default widgetset AppWidgetset optionally generated
                 by the latest Vaadin Maven plug-in (<a href="http://dev.vaadin.com/ticket/19675">#19675</a>)</li>
+            <li>Context click events are now generated on iOS devices
+                (<a href="http://dev.vaadin.com/ticket/19406">#19406</a>)</li>
         </ul>
 
         <p>
         <h3 id="knownissues">Known Issues and Limitations</h3>
         <ul>
             <li>Vaadin TouchKit versions prior to 4.1.0 do not work with Vaadin 7.7. Please use version 4.1.0 or above.</li>
-            <li>Context click events are not generated on iOS devices
-                (<a href="http://dev.vaadin.com/ticket/19367">#19367</a>)</li>
             <li>Drag'n'drop in a Table doesn't work on touch devices running
                 Internet Explorer (Windows Phone, Surface)
                 (<a href="http://dev.vaadin.com/ticket/13737">#13737</a>)
index 75370114ac9449d1680d9fda92eab2f79a6e1795..9e2854c2593ae9abe3f2bd4b67698465a8554d8e 100644 (file)
@@ -285,7 +285,7 @@ public abstract class AbstractComponentConnector extends AbstractConnector
     }
 
     protected boolean shouldHandleLongTap() {
-        return BrowserInfo.get().isTouchDevice() && !BrowserInfo.get().isIOS();
+        return BrowserInfo.get().isTouchDevice();
     }
 
     /**