mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-28 15:45:50 +00:00
22 lines
563 B
Django/Jinja
22 lines
563 B
Django/Jinja
<!-- 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>
|