Files
mozo-backend/app/views/dashboard/close_window.html.erb
T

12 lines
311 B
Plaintext

<!doctype html>
<html>
<head>
<script>
console.log("closing window");
window.opener.postMessage({user_id: '<%= params[:user_id] %>', authentication_token: '<%= params[:authentication_token] %>'}, "http://localhost:4200");
window.close();
</script>
</head>
<body>Closing window...</body>
</html>