Skip to content

Commit

Permalink
Merge pull request #1176 from burningmantech/jquery
Browse files Browse the repository at this point in the history
Don't use HTTPS for jquery resources because the CDN is  broken for HTTP/2
  • Loading branch information
wsanchez authored Apr 20, 2024
2 parents f2ab873 + b298da8 commit a96ea1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ims/application/_external.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,11 +698,11 @@ class ExternalApplication:
)

jqueryJSSourceURL = URL.fromText(
f"https://code.jquery.com/{jqueryVersion}.min.js"
f"http://code.jquery.com/{jqueryVersion}.min.js"
)

jqueryMapSourceURL = URL.fromText(
f"https://code.jquery.com/{jqueryVersion}.min.map"
f"http://code.jquery.com/{jqueryVersion}.min.map"
)

dataTablesSourceURL = URL.fromText(
Expand Down

0 comments on commit a96ea1b

Please sign in to comment.