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
The URLs for Bootstrap have an extra slash, resulting in a 404. These URLs look like this: http://anki.github.io/assets/themes//resources/bootstrap/js/bootstrap.min.js (note the // between themes and resources).
There are two solutions:
Rewrite instances like these to not have a slash; or:
The latter may be a more ideal solution as template/include files will remain easy to read and likely require less editing to make everything work, as opposed to the former. This is a non-issue for the analytic includes, as far as I'm aware.
The text was updated successfully, but these errors were encountered:
The URLs for Bootstrap have an extra slash, resulting in a 404. These URLs look like this:
http://anki.github.io/assets/themes//resources/bootstrap/js/bootstrap.min.js
(note the//
betweenthemes
andresources
).There are two solutions:
ASSET_PATH
(seen here) to workaround this.The latter may be a more ideal solution as template/include files will remain easy to read and likely require less editing to make everything work, as opposed to the former. This is a non-issue for the analytic includes, as far as I'm aware.
The text was updated successfully, but these errors were encountered: