13 lines
235 B
JavaScript
13 lines
235 B
JavaScript
import EmbeddableWidget from './embeddable-widget';
|
|
|
|
export default function bookmarklet() {
|
|
if (window.EmbeddableWidget) {
|
|
return;
|
|
}
|
|
window.EmbeddableWidget = EmbeddableWidget;
|
|
|
|
EmbeddableWidget.mount();
|
|
}
|
|
|
|
bookmarklet();
|