1
0
mirror of https://github.com/Safe-Support-Chat/ocrcc-chatbox synced 2025-03-14 17:06:35 +00:00

18 lines
489 B
JavaScript
Raw Normal View History

import EmbeddableWidget from './embeddable-widget';
2018-06-03 16:01:32 -04:00
2018-06-09 09:13:49 -04:00
export default function bookmarklet() {
if (window.EmbeddableWidget) {
return;
}
window.EmbeddableWidget = EmbeddableWidget;
2020-02-17 00:31:50 +01:00
EmbeddableWidget.mount({
2020-02-23 12:01:58 -05:00
termsUrl: 'https://tosdr.org/',
privacyStatement: 'This chat application does not collect any of your personal data or any data from your use of this service.',
matrixServerUrl: 'https://matrix.rhok.space',
roomName: 'Support Chat',
2020-02-17 00:31:50 +01:00
});
2018-06-09 09:13:49 -04:00
}
bookmarklet();