diff options
author | Andreas Schempp <andreas.schempp@terminal42.ch> | 2015-05-23 09:06:58 +0200 |
---|---|---|
committer | Andreas Schempp <andreas.schempp@terminal42.ch> | 2015-05-23 09:06:58 +0200 |
commit | cda4bb5bda7011cffa0a0607b2af8d93f19cf834 (patch) | |
tree | bb763f7733ab204d3117642e80ba25b7db006a39 | |
parent | 82f3ffad06ee417f38b7f981f669dd8bd6526faf (diff) | |
download | gitbook-cda4bb5bda7011cffa0a0607b2af8d93f19cf834.zip gitbook-cda4bb5bda7011cffa0a0607b2af8d93f19cf834.tar.gz gitbook-cda4bb5bda7011cffa0a0607b2af8d93f19cf834.tar.bz2 |
Fix the X-UA-Compatible meta tag
see https://github.com/GitbookIO/gitbook/issues/755
-rw-r--r-- | theme/templates/website/layout.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/templates/website/layout.html b/theme/templates/website/layout.html index 6f5a845..8ab807f 100644 --- a/theme/templates/website/layout.html +++ b/theme/templates/website/layout.html @@ -4,7 +4,7 @@ <head> {{ htmlSnippet("head:start")|default("")|safe }} <meta charset="UTF-8"> - <meta http-equiv="X-UA-Compatible" content="IE=11; IE=10; IE=9; IE=8; IE=7; IE=EDGE" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>{% block title %}{% endblock %}</title> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <meta name="description" content="{% block description %}{% endblock %}"> |