Files
talk/views/auth-callback.ejs
T
2017-02-16 12:17:20 -08:00

10 lines
258 B
Plaintext

<!DOCTYPE html>
<html>
<body>
<script type="text/javascript">
window.opener.authCallback(<% if (err) { %>'<%- err %>'<% } else { %>null<% } %>, '<%- data %>');
setTimeout(function() { window.close(); }, 50);
</script>
</body>
</html>