Provide a fallback and upgrade path for IE6/7/8 users

This commit is contained in:
Christos Constantinou
2014-12-16 20:01:05 +00:00
parent efe901d57f
commit daa124a4f3
2 changed files with 15 additions and 1 deletions

View File

@@ -63,6 +63,15 @@
<!--Livereload script rendered -->
<script type="text/javascript" src="http://{{request.hostname}}:35729/livereload.js"></script>
{% endif %}
<!--[if lt IE 9]>
<section class="browsehappy jumbotron hide">
<h1>Hello there!</h1>
<p>You are using an old browser which we unfortunately do not support.</p>
<p>Please <a href="http://browsehappy.com/">click here</a> to update your browser before using the website.</p>
<p><a href="http://browsehappy.com" class="btn btn-primary btn-lg" role="button">Yes, upgrade my browser!</a></p>
</section>
<![endif]-->
</body>
</html>

View File

@@ -12,4 +12,9 @@
}
.ng-valid.ng-dirty {
border-color: #78FA89;
}
}
.browsehappy.jumbotron.hide,
body.ng-cloak
{
display: block;
}