diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-05-28 14:18:19 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-05-28 14:18:19 +0200 |
commit | 7e2f0ed4bcdb6cfafffb7ec7a618dd4d1b7a3b9d (patch) | |
tree | 0fdfb13552d855f0a02c4040981d8e6b09db8035 | |
parent | a877acf905af5ae9bde8ba84be973ebc1a17d432 (diff) | |
parent | cda4bb5bda7011cffa0a0607b2af8d93f19cf834 (diff) | |
download | gitbook-7e2f0ed4bcdb6cfafffb7ec7a618dd4d1b7a3b9d.zip gitbook-7e2f0ed4bcdb6cfafffb7ec7a618dd4d1b7a3b9d.tar.gz gitbook-7e2f0ed4bcdb6cfafffb7ec7a618dd4d1b7a3b9d.tar.bz2 |
Merge pull request #758 from aschempp/hotfix/x-ua-compatible
Fix the X-UA-Compatible meta tag
-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 d2d16fc..9e66799 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 %}"> |