ocrcc-chatbox/src/outputs/bookmarklet.js

11 lines
209 B
JavaScript

import EmbeddableWidget from './embeddable-widget';
(function bookmarklet() {
if (window.EmbeddableWidget) {
return;
}
window.EmbeddableWidget = EmbeddableWidget;
EmbeddableWidget.mount();
}());