Skip to content

Instantly share code, notes, and snippets.

@rwaldron
Created June 21, 2010 18:57
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 rwaldron/447305 to your computer and use it in GitHub Desktop.
Save rwaldron/447305 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Um. Duh?</title>
<script src="http://github.com/DmitryBaranovskiy/raphael/raw/master/raphael-min.js"></script>
<script>
// WORKS FINE.
console.log(Raphael);
</script>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Um. Duh?</title>
<script src="http://github.com/DmitryBaranovskiy/raphael/raw/master/raphael.js"></script>
<script>
// WORKS FINE.
console.log(Raphael);
</script>
</head>
<body>
</body>
</html>
@rwaldron
Copy link
Author

This example is proof that jumping to conclusions without testing something makes you look silly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment