mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
291bcd17ff
Summary: Google Auth popup wasn't able to resolve origin from gristConfig. Moving this reponsability to server side, where it gets calculated from initial request. Test Plan: n/a Reviewers: dsagal, paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D2935
13 lines
190 B
HTML
13 lines
190 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf8">
|
|
</head>
|
|
<body>
|
|
<!-- INSERT MESSAGE -->
|
|
<script>
|
|
window.opener.postMessage(message, message.origin);
|
|
</script>
|
|
</body>
|
|
</html>
|