ocrcc-chatbox/src/outputs/bookmarklet.js

13 lines
235 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;
EmbeddableWidget.mount();
2018-06-09 09:13:49 -04:00
}
bookmarklet();