ocrcc-chatbox/src/outputs/bookmarklet.js

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({
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();