Skip to content

Commit

Permalink
replace cdn.mathjax.org with cdnjs
Browse files Browse the repository at this point in the history
cdn.mathjax.org is shutting down: https://www.mathjax.org/cdn-shutting-down/

This changes the default MathJax URL in the math plugin, as well as
references in README.md and test/examples/math.html
  • Loading branch information
christianp committed Apr 5, 2017
1 parent c3e96f1 commit 9495b64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,7 @@ Reveal.initialize({
// other options ...

math: {
mathjax: 'https://cdn.mathjax.org/mathjax/latest/MathJax.js',
mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js',
config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html
},

Expand Down
2 changes: 1 addition & 1 deletion plugin/math/math.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
var RevealMath = window.RevealMath || (function(){

var options = Reveal.getConfig().math || {};
options.mathjax = options.mathjax || 'https://cdn.mathjax.org/mathjax/latest/MathJax.js';
options.mathjax = options.mathjax || 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js';
options.config = options.config || 'TeX-AMS_HTML-full';

loadScript( options.mathjax + '?config=' + options.config, function() {
Expand Down
2 changes: 1 addition & 1 deletion test/examples/math.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ <h3>Maxwell&#8217;s Equations</h3>
transition: 'linear',

math: {
// mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',
// mathjax: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js',
config: 'TeX-AMS_HTML-full'
},

Expand Down

0 comments on commit 9495b64

Please sign in to comment.