You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the Diagram.addTo() method in railroad.js without specifying a target element, the method cannot determine the correct <script> tag if the tag has type=module coded. This is because ES Module scripts, even in-line ones, are forced to be <script defer>, causing them to be run out of order, making the code that locates the <script> tag locate the wrong one.
The text was updated successfully, but these errors were encountered:
When using the
Diagram.addTo()
method inrailroad.js
without specifying a target element, the method cannot determine the correct<script>
tag if the tag hastype=module
coded. This is because ES Module scripts, even in-line ones, are forced to be<script defer>
, causing them to be run out of order, making the code that locates the<script>
tag locate the wrong one.The text was updated successfully, but these errors were encountered: