ocrcc-chatbox/src/outputs/bookmarklet.js

13 lines
235 B
JavaScript
Raw Normal View History

import EmbeddableWidget from './embeddable-widget';
2018-06-03 20:01:32 +00:00
2018-06-09 13:13:49 +00:00
export default function bookmarklet() {
if (window.EmbeddableWidget) {
return;
}
window.EmbeddableWidget = EmbeddableWidget;
EmbeddableWidget.mount();
2018-06-09 13:13:49 +00:00
}
bookmarklet();