Browse Source

Mark IE8-IE10 as not supported

Change-Id: I4fdb3290c6ac95e4e2c6ac210e6f6b2f06cfe32a
tags/8.0.0.alpha1
Artur Signell 7 years ago
parent
commit
fc15f16674
1 changed files with 2 additions and 5 deletions
  1. 2
    5
      shared/src/main/java/com/vaadin/shared/VBrowserDetails.java

+ 2
- 5
shared/src/main/java/com/vaadin/shared/VBrowserDetails.java View 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+

Loading…
Cancel
Save