2018-06-09 08:43:18 -04:00
|
|
|
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() {
|
2018-06-09 08:43:18 -04:00
|
|
|
if (window.EmbeddableWidget) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
window.EmbeddableWidget = EmbeddableWidget;
|
|
|
|
|
2020-02-17 00:31:50 +01:00
|
|
|
EmbeddableWidget.mount({
|
|
|
|
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",
|
|
|
|
});
|
2018-06-09 09:13:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bookmarklet();
|