This commit is contained in:
Sharon Kennedy 2020-02-05 13:43:10 -05:00
parent 7b82fdaa76
commit c5cecd21a0
3 changed files with 30 additions and 17 deletions

File diff suppressed because one or more lines are too long

View File

@ -8,7 +8,20 @@
<script src="./widget.js"></script> <script src="./widget.js"></script>
<script> <script>
EmbeddableWidget.mount(); var theme = {
themeColor: "#008080",
lightColor: "#FFF8F0",
darkColor: "#22333B",
errorColor: "#FFFACD",
font: "'Assistant', 'Helvetica', sans-serif",
placement: "right"
};
EmbeddableWidget.mount({
matrixServerUrl: "https://matrix.rhok.space",
roomName: "Support Chat",
theme: theme
});
</script> </script>
</body> </body>
</html> </html>

File diff suppressed because one or more lines are too long