Skip to content

Commit

Permalink
fix(base template): remove opening slash from script src paths
Browse files Browse the repository at this point in the history
  • Loading branch information
dchiller committed Aug 16, 2024
1 parent 30e5a4f commit 2d4e533
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web-app/django/VIM/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<script src="{% static "/js/GoogleTranslate.js" %}"></script>
<script src="{% static "js/GoogleTranslate.js" %}"></script>
<script type="text/javascript"
src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<script src="{% static "/js/LanguageTooltip.js" %}"></script>
<script src="{% static "js/LanguageTooltip.js" %}"></script>
{% block scripts %}
{% endblock scripts %}

Expand Down

0 comments on commit 2d4e533

Please sign in to comment.