diff options
author | 2020-07-15 14:19:41 -0700 | |
---|---|---|
committer | 2020-07-15 14:19:41 -0700 | |
commit | 9fdfdc2a0867aac7fe271412ae41c9349df77180 (patch) | |
tree | 4a885ee4d2205350cc0fe829ec9694b1df05dbb5 | |
parent | Merge pull request #346 from python-discord/feat/deps/344/django-3.0 (diff) |
Bump jQuery version
The Django wiki updated the jQuery version, so our reference needs to
be updated too. Otherwise, we will get a 404 for the script.
-rw-r--r-- | pydis_site/templates/wiki/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/templates/wiki/base.html b/pydis_site/templates/wiki/base.html index 9f904324..846492ab 100644 --- a/pydis_site/templates/wiki/base.html +++ b/pydis_site/templates/wiki/base.html @@ -7,7 +7,7 @@ {% block head %} {{ block.super }} - <script src="{% static "wiki/js/jquery-3.3.1.min.js" %}" type="text/javascript"></script> + <script src="{% static "wiki/js/jquery-3.4.1.min.js" %}" type="text/javascript"></script> <script src="{% static "wiki/js/core.js" %}" type="text/javascript"></script> <script src="{% static "js/wiki/simplemde.min.js" %}" type="text/javascript"></script> |