Skip to content

Commit

Permalink
Merge pull request #749 from alphagov/fix-ie8-review-app
Browse files Browse the repository at this point in the history
Reintroduce mistakenly deleted HTML5Shiv
  • Loading branch information
NickColley authored Jun 1, 2018
2 parents b8018cf + 0a1149a commit 205d7e1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ Note: We're not following semantic versioning yet, we are going to talk about th
- Improve release steps
([PR #745](https://github.com/alphagov/govuk-frontend/pull/745))

- Reintroduce mistakenly deleted HTML5Shiv required for IE8
([PR #749](https://github.com/alphagov/govuk-frontend/pull/749))

## 0.0.31-alpha (Breaking release)

💥 Breaking changes:
Expand Down
3 changes: 3 additions & 0 deletions app/views/examples/template-block-areas/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<!--[if IE 8]>
<link rel="stylesheet" href="/public/app-ie8.css">
<![endif]-->
<!--[if lt IE 9]>
<script src="/vendor/html5-shiv/html5shiv.js"></script>
<![endif]-->
<style>
[data-block] {
position: relative;
Expand Down
3 changes: 3 additions & 0 deletions app/views/examples/template-custom/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
<!--[if IE 8]>
<link rel="stylesheet" href="/public/app-ie8.css">
<![endif]-->
<!--[if lt IE 9]>
<script src="/vendor/html5-shiv/html5shiv.js"></script>
<![endif]-->
<!-- endblock:head -->
{% endblock %}

Expand Down
3 changes: 3 additions & 0 deletions app/views/examples/template-default/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<!--[if IE 8]>
<link rel="stylesheet" href="/public/app-ie8.css">
<![endif]-->
<!--[if lt IE 9]>
<script src="/vendor/html5-shiv/html5shiv.js"></script>
<![endif]-->
{% endblock %}

{% block bodyEnd %}
Expand Down
3 changes: 3 additions & 0 deletions app/views/layouts/_generic.njk
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
<!--[if IE 8]>
<link rel="stylesheet" href="/public/app-ie8.css">
<![endif]-->
<!--[if lt IE 9]>
<script src="/vendor/html5-shiv/html5shiv.js"></script>
<![endif]-->

{% block styles %}{% endblock %}
{% endblock %}
Expand Down

0 comments on commit 205d7e1

Please sign in to comment.