]> source.dussan.org Git - vaadin-framework.git/commitdiff
Removed IE9 fallback for IE10 #11237
authorJohn Ahlroos <john@vaadin.com>
Mon, 4 Mar 2013 11:09:56 +0000 (13:09 +0200)
committerJohn Ahlroos <john@vaadin.com>
Mon, 4 Mar 2013 11:19:02 +0000 (13:19 +0200)
Change-Id: If35249c16a40efbcee32164b535888cbc7af792d

server/src/com/vaadin/server/BootstrapHandler.java

index 456aeaa4782b5ab4f7f688add8a07430ff30c3c9..f280bc80b71ba2d8fba37c36a18f10554f1e0071 100644 (file)
@@ -241,11 +241,9 @@ public abstract class BootstrapHandler implements RequestHandler {
 
         /*
          * Enable Chrome Frame in all versions of IE if installed.
-         * 
-         * Claim IE10 support to avoid using compatibility mode.
          */
         head.appendElement("meta").attr("http-equiv", "X-UA-Compatible")
-                .attr("content", "IE=9;chrome=1");
+                .attr("content", "IE=10;chrome=1");
 
         String title = response.getUIProvider().getPageTitle(
                 new UICreateEvent(context.getRequest(), context.getUIClass()));