Files
mozo-backend/app/views/dashboard/close_window.html.erb
T
2015-09-17 17:46:33 +02:00

12 lines
314 B
Plaintext

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