From 3db06127634591e4277f1c99111f779ae316794a Mon Sep 17 00:00:00 2001 From: Nicolay Ramm Date: Mon, 20 Jul 2020 20:31:13 +0200 Subject: [PATCH] Use https for external scripts and links --- compile.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compile.py b/compile.py index 7c66e6d1..f99c3ad1 100644 --- a/compile.py +++ b/compile.py @@ -56,8 +56,8 @@ def create_directory(dir): ########################## Fetch Remote Assets ########################## JS_LIBS = [ - ('jquery', 'jquery.min.js', 'http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/', None), - ('jqueryui', 'jquery-ui.min.js', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/', None), + ('jquery', 'jquery.min.js', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/', None), + ('jqueryui', 'jquery-ui.min.js', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/', None), ('mathjax', 'MathJax.js', 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/', '?config=MML_HTMLorMML'), (None, 'config/MML_HTMLorMML.js', 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/', '?V=2.7.5'), (None, 'jax/output/HTML-CSS/jax.js', 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/', '?V=2.7.5'), @@ -797,18 +797,18 @@ def spew_category(name, commands, current_command, api): '''comments = """
Guidelines for comments:
"""'''