fixing tests for changed bookmark

This commit is contained in:
Benjamin Boudreau
2018-06-09 09:13:49 -04:00
parent 81517491d5
commit bf5c6d597a
5 changed files with 12 additions and 8 deletions

View File

@@ -1,10 +1,12 @@
import EmbeddableWidget from './embeddable-widget';
(function bookmarklet() {
export default function bookmarklet() {
if (window.EmbeddableWidget) {
return;
}
window.EmbeddableWidget = EmbeddableWidget;
EmbeddableWidget.mount();
}());
}
bookmarklet();