Skip to content

Commit

Permalink
Fix console error IE8
Browse files Browse the repository at this point in the history
  • Loading branch information
ediblecode committed Sep 28, 2016
1 parent d0c3f9d commit dc6db6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/server/views/layouts/_layout.njk
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
<![endif]-->

<script>
if(console && console.info) {
if(typeof console !== "undefined" && console.info) {
console.info("%c✪ We hire people like you; people who are curious about how things are built. Interested? See http://bit.ly/NICEJobs for more info ✪", "background: #333; border-radius: 4px; color: #fff; font-size: 18px; font-family: Lato,'Helvetica Neue',Helvetica,Arial,sans-serif; padding: 2px 6px;");
}
</script>
Expand Down

0 comments on commit dc6db6e

Please sign in to comment.