Skip to content

Commit

Permalink
Fixed JS links to jQuery and MathJax.
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesEGrant committed Nov 15, 2023
1 parent 87cb9f4 commit 5c7c0d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions doc/user/release-notes.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ <h2>Release notes for Crux</h2>

<h4>Minor changes</h4>
<ul>
<li>14 Nov 2023: Fixed bug in spectral-counts documentation, LaTex not being
rendered.</li>
<li>5 Oct 2023: Fixed bug in Bullseye and Hardklor which prevented them from
processing files with a '#' in the file name.</li>
<li>1 Oct 2023: Removed uneeded DLL from Windows distribution. Fixed error in Thermo RAW file support.</li>
Expand Down
4 changes: 2 additions & 2 deletions src/app/CreateDocs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ const string CreateDocs::TOOL_TEMPLATE =
"<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n"
"<link rel=\"stylesheet\" type=\"text/css\" href=\"../styles.css\">\n"
"<script type=\"text/javascript\"\n"
" src=\"http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML\">\n"
" src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML\">\n"
"</script>\n"
"<script type=\"text/javascript\">\n"
" MathJax.Hub.Config({jax: ['input/TeX','output/HTML-CSS'], displayAlign: 'left'});\n"
Expand All @@ -459,7 +459,7 @@ const string CreateDocs::TOOL_TEMPLATE =
" var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\n"
" })();\n"
"</script>\n"
"<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js\"></script>\n"
"<script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js\"></script>\n"
"<script type=\"text/javascript\">\n"
" // Main Menu\n"
" $( document ).ready(function() {\n"
Expand Down

0 comments on commit 5c7c0d1

Please sign in to comment.