Move/rename templates

This commit is contained in:
mDuo13
2021-06-15 12:01:08 -07:00
parent b5f8ed4efc
commit 3e110f3852
67 changed files with 509 additions and 870 deletions

View File

@@ -0,0 +1,21 @@
<!-- Feedback Widget -->
<script src="{{currentpage.prefix}}assets/vendor/custom-widget.js"></script>
<div id="feedback-content"></div>
<script>
const widget = new EmbeddableWidget.default({
theme: 'xrpl',
opened: false,
parentElement: '#feedback-content',
currentPath: window.location.pathname,
adapter: 'ga',
app:'Feedback Widget',
adapterConfig:{
containerId:"GTM-THHW334",
trackingId:"UA-45576805-2"
}
});
setTimeout(() => {
widget.open();
// EmbeddableWidget.default.unmount();
}, 2000);
</script>