From: Artur Signell Date: Wed, 17 Aug 2016 20:23:39 +0000 (+0300) Subject: Mark IE8-IE10 as not supported X-Git-Tag: 8.0.0.alpha1~148 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=fc15f166742737cabfa80e9d548e6d8a1a1f7a04;p=vaadin-framework.git Mark IE8-IE10 as not supported Change-Id: I4fdb3290c6ac95e4e2c6ac210e6f6b2f06cfe32a --- diff --git a/shared/src/main/java/com/vaadin/shared/VBrowserDetails.java b/shared/src/main/java/com/vaadin/shared/VBrowserDetails.java index 7ee9c9f57b..9fc0d072c8 100644 --- a/shared/src/main/java/com/vaadin/shared/VBrowserDetails.java +++ b/shared/src/main/java/com/vaadin/shared/VBrowserDetails.java @@ -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+