ocrcc-chatbox/public/index.html

38 lines
1.6 KiB
HTML
Raw Normal View History

2018-05-29 02:49:38 +00:00
<!DOCTYPE html>
<html>
<head>
2020-02-01 05:30:58 +00:00
<title>Embeddable Chatbox Demo</title>
2020-02-17 17:22:54 +00:00
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1">
2018-05-29 02:49:38 +00:00
</head>
<body style="height: 100vh;">
2020-02-16 23:31:50 +00:00
<p style="font-family:sans-serif; padding: 3rem 5rem;">
<a id="bookmarklet">Bookmarklet (drag it to your bookmarks bar)</a>
</p>
2020-02-01 05:30:58 +00:00
<p style="font-family:sans-serif; padding: 3rem 5rem;">Look down!</p>
2020-02-24 04:12:47 +00:00
<script src="./chatbox.js"></script>
2020-02-01 05:30:58 +00:00
<script>
var config = {
matrixServerUrl: 'https://matrix.rhok.space',
2020-03-22 15:07:41 +00:00
botId: '@help-bot:rhok.space',
roomName: 'Support Chat',
termsUrl: 'https://tosdr.org/',
introMessage: 'This chat application does not collect any of your personal data or any data from your use of this service.',
agreementMessage: 'Do you want to continue?',
confirmationMessage: 'Waiting for a facilitator to join the chat...',
exitMessage: 'The chat is closed. You may close this window.',
chatUnavailableMessage: 'The chat service is not available right now. Please try again later.',
anonymousDisplayName: 'Anonymous',
}
EmbeddableChatbox.mount(config);
2020-02-01 05:30:58 +00:00
</script>
2020-02-16 23:31:50 +00:00
<script>
var bookmarklet = "var s= document.createElement('script'); s.setAttribute('src', '"+window.location.href+"bookmarklet.js'); s.setAttribute('crossorigin', 'anonymous'); document.body.appendChild(s);"
bookmarklet = '(function(){'+ bookmarklet +'})();'
document.querySelector('a#bookmarklet').setAttribute("href", "javascript:" + encodeURIComponent(bookmarklet));
</script>
2018-05-29 02:49:38 +00:00
</body>
</html>