Skip to content

Instantly share code, notes, and snippets.

@KTamas
Created May 5, 2011 21:54
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 KTamas/958052 to your computer and use it in GitHub Desktop.
Save KTamas/958052 to your computer and use it in GitHub Desktop.
<html>
<head>
<script type="text/javascript">
var close_and_redirect = function() {
if (opener && !opener.closed) {
opener.location.href = "http://localhost:9610/done";
}
window.close();
}
</script>
</head>
<body onload="setTimeout('close_and_redirect()', 500)">
Yay, logged in! Closing...
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment