From 6f249606770bc8305c453fe810bbf900730014b7 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 25 Aug 2014 16:51:08 +0200 Subject: [PATCH] Use the MathJaX CDN with https:// Otherwise, Firefox, when reading CGAL documentation pages through an https connection, will refuse to load MathJaX via the CDN. --- Documentation/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/CMakeLists.txt b/Documentation/CMakeLists.txt index 89bd650daf9..63fd0dab841 100644 --- a/Documentation/CMakeLists.txt +++ b/Documentation/CMakeLists.txt @@ -108,7 +108,7 @@ find_package(PythonInterp 2.6.8) if(DOXYGEN_FOUND) # set up the directories and variables - set(CGAL_DOC_MATHJAX_LOCATION "http://cdn.mathjax.org/mathjax/latest" + set(CGAL_DOC_MATHJAX_LOCATION "https://cdn.mathjax.org/mathjax/latest" CACHE STRING "The location of MathJax to be used for the documentation.") set(CGAL_DOC_OUTPUT_DIR "${CMAKE_BINARY_DIR}/doc_output")