edumeet/server/httpHelper.js
Håvar Aambø Fosstveit 5247bfe332 Need to stringify.
2019-10-24 09:45:26 +02:00

23 lines
No EOL
392 B
JavaScript

function httpHelper(data)
{
const html = `<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Multiparty Meeting</title>
</head>
<body>
<script type='text/javascript'>
let data = ${JSON.stringify(data)};
window.opener.CLIENT.receiveFromChildWindow(data);
window.close();
</script>
</body>
</html>`;
return html;
}
module.exports = httpHelper;