]> source.dussan.org Git - vaadin-framework.git/commitdiff
Mark IE8-IE10 as not supported
authorArtur Signell <artur@vaadin.com>
Wed, 17 Aug 2016 20:23:39 +0000 (23:23 +0300)
committerArtur Signell <artur@vaadin.com>
Thu, 18 Aug 2016 07:01:53 +0000 (10:01 +0300)
Change-Id: I4fdb3290c6ac95e4e2c6ac210e6f6b2f06cfe32a

shared/src/main/java/com/vaadin/shared/VBrowserDetails.java

index 7ee9c9f57b2dba116d3784e77cc43fae73f9f51f..9fc0d072c83e6ccd05493214c5b54f577435c78f 100644 (file)
@@ -559,17 +559,14 @@ public class VBrowserDetails implements Serializable {
 
     /**
      * Checks if the browser is so old that it simply won't work with a Vaadin
-     * application. NOTE that the browser might still be capable of running
-     * Crome Frame, so you might still want to check
-     * {@link #isChromeFrameCapable()} if this returns true.
+     * application.
      *
      * @return true if the browser won't work, false if not the browser is
      *         supported or might work
      */
     public boolean isTooOldToFunctionProperly() {
         // Check Trident version to detect compatibility mode
-        if (isIE() && getBrowserMajorVersion() < 8
-                && getBrowserEngineVersion() < 4) {
+        if (isIE() && getBrowserMajorVersion() < 11) {
             return true;
         }
         // Webkit 533 in Safari 4.1+, Android 2.2+, iOS 4+