Skip to content

Commit

Permalink
Merge pull request #2650 from mynnx/patch-1
Browse files Browse the repository at this point in the history
Add IE compatibility meta tag
  • Loading branch information
ndelangen authored and shilman committed Jan 7, 2018
1 parent ac40b5d commit 45b0e42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/angular/src/server/iframe.html.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<base target="_parent">
<script>
if (window.parent !== window) {
Expand Down
1 change: 1 addition & 0 deletions app/react/src/server/iframe.html.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<base target="_parent">
<script>
if (window.parent !== window) {
Expand Down
1 change: 1 addition & 0 deletions app/vue/src/server/iframe.html.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<base target="_parent">
<script>
if (window.parent !== window) {
Expand Down

0 comments on commit 45b0e42

Please sign in to comment.