From b298da8b39e5b27a0869e10af4bcfde41a659011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wilfredo=20Sa=CC=81nchez?= Date: Fri, 19 Apr 2024 18:51:16 -0700 Subject: [PATCH] DOn't use HTTPS for jquery resources because the CDN is broken for HTTP/2. --- src/ims/application/_external.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ims/application/_external.py b/src/ims/application/_external.py index 72d9524d5..7b737815c 100644 --- a/src/ims/application/_external.py +++ b/src/ims/application/_external.py @@ -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(