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
If arbor.js is included without any explicit path, as in:
<script src="arbor.js"></script>
then the arbor_path() function incorrectly returns "/arbor.js", which doesn't work when it is not run from the root directory.
A workaround is to instead include arbor with:
<script src="./arbor.js"></script>
but perhaps arbor_path() should default to the current directory instead of the root?
The text was updated successfully, but these errors were encountered:
If arbor.js is included without any explicit path, as in:
then the arbor_path() function incorrectly returns "/arbor.js", which doesn't work when it is not run from the root directory.
A workaround is to instead include arbor with:
but perhaps arbor_path() should default to the current directory instead of the root?
The text was updated successfully, but these errors were encountered: