summaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-11-13 16:30:28 +0200
committerArtur Signell <artur@vaadin.com>2012-11-13 16:30:28 +0200
commite063ec8148883d5951732064cf201e6b92270355 (patch)
tree612c91dd857fb18c082e4bb70996d0ed3320574d /server/src
parentd65970d329249c6725ec0bafd46725405492e833 (diff)
downloadvaadin-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.java2
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()));