Skip to content

Instantly share code, notes, and snippets.

@acreeger
Created April 11, 2013 22:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acreeger/5367689 to your computer and use it in GitHub Desktop.
Save acreeger/5367689 to your computer and use it in GitHub Desktop.
Code from parse.com to give developers a little hello when they open the console.
<script type="text/javascript">
if (typeof console == "object") {
if (Util.is_chrome) {
console.log("%cHey! Like what you see and enjoy looking under the hood? That's cool. We love curious people. You should join us and help us build great stuff. https://www.parse.com/jobs", "color: #0677c8; font-size: 18px; font-family: 'Helvetica-Neue', Helvetica, Arial, sans-serif;");
} else {
console.log("Hey! Like what you see and enjoy looking under the hood? That's cool. We love curious people. You should join us and help us build great stuff. https://www.parse.com/jobs");
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment