diff options
author | Artur Signell <artur@vaadin.com> | 2016-08-17 23:23:39 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2016-08-18 10:01:53 +0300 |
commit | fc15f166742737cabfa80e9d548e6d8a1a1f7a04 (patch) | |
tree | 1cb3e333a75ade7d25ceec56f38de18135809782 | |
parent | 588f3cc7f8f719a6bd38b4c196fce80c8040b44c (diff) | |
download | vaadin-framework-fc15f166742737cabfa80e9d548e6d8a1a1f7a04.tar.gz vaadin-framework-fc15f166742737cabfa80e9d548e6d8a1a1f7a04.zip |
Mark IE8-IE10 as not supported
Change-Id: I4fdb3290c6ac95e4e2c6ac210e6f6b2f06cfe32a
-rw-r--r-- | shared/src/main/java/com/vaadin/shared/VBrowserDetails.java | 7 |
1 files changed, 2 insertions, 5 deletions
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+ |