summaryrefslogtreecommitdiffstats
path: root/server/src/com
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-11-13 14:52:07 +0000
committerVaadin Code Review <review@vaadin.com>2012-11-13 14:52:07 +0000
commite0e78ac569471314ad0062072b4a2392687356e9 (patch)
tree1f6340300e45ae7dba9cd8739eefeaed9d756758 /server/src/com
parentf79949cc274a1fdbd865d800d567ad6d774197bd (diff)
parente063ec8148883d5951732064cf201e6b92270355 (diff)
downloadvaadin-framework-e0e78ac569471314ad0062072b4a2392687356e9.tar.gz
vaadin-framework-e0e78ac569471314ad0062072b4a2392687356e9.zip
Merge "Run IE10 in IE9 compatibility mode for now (#10172)"
Diffstat (limited to 'server/src/com')
-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()));