From 469a13b4f8dcb2cf28630c5816ad6689f328bda1 Mon Sep 17 00:00:00 2001 From: janmax <mail-github@jmx.io> Date: Fri, 5 May 2017 19:06:06 +0200 Subject: [PATCH] Revert "Declared some script resources async" This reverts commit b32f8f632253cc6cb3e40fc72347d907d7f91e7d. --- core/templates/base.html | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/core/templates/base.html b/core/templates/base.html index 5e1c6c52..782ccbb2 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -18,17 +18,18 @@ <link rel="stylesheet" href="{% static 'lib/css/bootstrap.min.css' %}"> <link rel="stylesheet" href="{% static 'lib/css/custom.css' %}"> - {# Load other javascript #} - <script async src="{% static 'lib/js/jquery-3.1.1.min.js' %}"></script> - <script async src="{% static 'lib/js/tether.min.js' %}"></script> - <script async src="{% static 'lib/js/bootstrap.min.js' %}"></script> - - {# sortable table stuff #} - <script async src="{% static 'lib/js/jquery.dataTables.min.js' %}"></script> - <script async src="{% static 'lib/js/dataTables.bootstrap4.min.js' %}"></script> {# Importing stuff for ACE editor #} <script src="{% static 'lib/ace/ace.js' %}"></script> + + {# Load other javascript #} + <script src="{% static 'lib/js/jquery-3.1.1.min.js' %}"></script> + <script src="{% static 'lib/js/tether.min.js' %}"></script> + <script src="{% static 'lib/js/bootstrap.min.js' %}"></script> + + {# sortable table stuff #} + <script src="{% static 'lib/js/jquery.dataTables.min.js' %}"></script> + <script src="{% static 'lib/js/dataTables.bootstrap4.min.js' %}"></script> </head> {# Navbar contaning: Brand - Title - Page Title <---> (Username - Logout || Login form) #} -- GitLab