Skip to content

Commit

Permalink
fix: updated the correct version jquery reference in templates/wrappe…
Browse files Browse the repository at this point in the history
…r/javascript.html
  • Loading branch information
gaare committed Jun 11, 2024
1 parent 826d93c commit 1e1d8b9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{% if offline %}
{% if inline %}
<script>
{% include 'wrapper/assets/jquery-1.12.4.min.js' %}
{% include 'wrapper/assets/jquery-3.7.0.min.js' %}
{% include 'wrapper/assets/bootstrap.min.js' %}
</script>
<script>
{% include 'wrapper/assets/script.js' %}
</script>
{% else %}
<script src="{{ assets_prefix }}/js/jquery-1.12.4.min.js"></script>
<script src="{{ assets_prefix }}/js/jquery-3.7.0.min.js"></script>
<script src="{{ assets_prefix }}/js/bootstrap.min.js"></script>
<script src="{{ assets_prefix }}/js/script.js"></script>
{% endif %}
{% else %}
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script>
{% include 'wrapper/assets/script.js' %}
Expand Down

0 comments on commit 1e1d8b9

Please sign in to comment.