Created
February 5, 2012 01:14
-
-
Save itsbth/1741743 to your computer and use it in GitHub Desktop.
Uploaded by UploadToGist for Sublime Text 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| link = null | |
| window.loginCallback = -> | |
| document.location.href = link if link | |
| $ -> | |
| $('a[data-login]').click (evt) -> | |
| link = this.href | |
| wnd = window.open '/auth/steam', 'login', 'menubar=no,status=no' | |
| if window.opener and window.opener.loginCallback | |
| window.opener.loginCallback() | |
| window.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment