mirror of
https://github.com/wassname/talk.git
synced 2026-07-13 08:11:15 +08:00
6d7056d831
* Move talk-server/config to talk-common/config * Refactor build into /src/core/build and use common config * Add embed webpack config * Start implementing embed * Implement embed * Add pym types * Add event emitter to Talk Context * Add MatchMedia test for passing values from the context * Add support for click far away * Integrate pym click events to registerClickFarAway * Add tests * Resolve merge issues * Apply PR review
20 lines
482 B
HTML
20 lines
482 B
HTML
<!DOCTYPE html>
|
||
<html>
|
||
|
||
<head>
|
||
<title>Talk 5.0 – Embed Stream</title>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||
<meta name="viewport" content="width=device-width, user-scalable=no">
|
||
</head>
|
||
|
||
<body>
|
||
<h1 style="text-align: center" }>Talk 5.0 – Embed Stream</h1>
|
||
<div id="coralStreamEmbed"></div>
|
||
<script>
|
||
window.TalkEmbed = Talk.render(document.getElementById('coralStreamEmbed'));
|
||
</script>
|
||
</body>
|
||
|
||
</html>
|