diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-13 16:30:28 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-11-13 16:30:28 +0200 |
commit | e063ec8148883d5951732064cf201e6b92270355 (patch) | |
tree | 612c91dd857fb18c082e4bb70996d0ed3320574d /server/src | |
parent | d65970d329249c6725ec0bafd46725405492e833 (diff) | |
download | vaadin-framework-e063ec8148883d5951732064cf201e6b92270355.tar.gz vaadin-framework-e063ec8148883d5951732064cf201e6b92270355.zip |
Run IE10 in IE9 compatibility mode for now (#10172)
Change-Id: I66f77c67692092a203bb84ae152ba9ccbff4bda8
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/com/vaadin/server/BootstrapHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/server/BootstrapHandler.java b/server/src/com/vaadin/server/BootstrapHandler.java index f4da147667..15aaab313b 100644 --- a/server/src/com/vaadin/server/BootstrapHandler.java +++ b/server/src/com/vaadin/server/BootstrapHandler.java @@ -245,7 +245,7 @@ public abstract class BootstrapHandler implements RequestHandler { * Claim IE10 support to avoid using compatibility mode. */ head.appendElement("meta").attr("http-equiv", "X-UA-Compatible") - .attr("content", "IE=10;chrome=1"); + .attr("content", "IE=9;chrome=1"); String title = response.getUIProvider().getPageTitle( new UICreateEvent(context.getRequest(), context.getUIClass())); |