Skip to content

Commit

Permalink
Move bootstrap bundle to top of base document
Browse files Browse the repository at this point in the history
Silly moves. This is the cause of general tooltip appearance issues I believe.
  • Loading branch information
zediious committed Jun 11, 2024
1 parent e1822b7 commit d54577a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions raptorWeb/templates/panel/panel_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<title>{{site_info.brand_name}} | Control Panel</title>
<script src="{% static 'javascript/src/dep/htmx.min.js' %}" hx-preserve="true"></script>
<script src="{% static 'javascript/src/dep/head-support.js' %}" hx-preserve="true"></script>
<script src="{% static 'javascript/src/dep/bootstrap.bundle.min.js' %}" hx-preserve="true"></script>
<link rel="stylesheet" href="{% static 'css/raptormc.css' %}" hx-preserve="true">
<link rel="shortcut icon" type="image/x-icon"
href="{% if small_site_info.ico_image %}{{small_site_info.ico_image.url}}{% endif %}"
Expand Down Expand Up @@ -72,10 +73,9 @@
</footer>

{% comment %} JS Imports {% endcomment %}
<script src="{% static 'javascript/src/dep/bootstrap.bundle.min.js' %}"></script>
<script src="{% static 'javascript/src/dep/jquery-3.6.1.min.js' %}"></script>
<script src="{% static 'javascript/src/dep/alpine.min.js' %}"></script>
<script src="{% static 'javascript/src/modalClose.js' %}"></script>
<script src="{% static 'javascript/src/dep/jquery-3.6.1.min.js' %}" hx-preserve="true"></script>
<script src="{% static 'javascript/src/dep/alpine.min.js' %}" hx-preserve="true"></script>
<script src="{% static 'javascript/src/modalClose.js' %}" hx-preserve="true"></script>


<script>
Expand Down

0 comments on commit d54577a

Please sign in to comment.