Hi there!
Greetings!
I am working on an application in which I have used the older version of crayons.
<script src="https://unpkg.com/@freshworks/crayons/dist/crayons/crayons.esm.js"></script>
<script nomodule src="https://unpkg.com/@freshworks/crayons/dist/crayons/crayons.js"></script>
but recently I have changed the script tag to the newer version
<script
type="module"
src="https://cdn.jsdelivr.net/npm/@freshworks/crayons@v4/dist/crayons/crayons.esm.js"
></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@freshworks/crayons@v4/dist/crayons/crayons.js"
></script>
without changing the HTML. Now the no events are triggering (button and on change events)
So, shall I revert back to the old script? is it safe and what version does the first script tag point to?
Thank you.