Merge pull request #1866 from christianp/mathjax-cdn
replace cdn.mathjax.org with cdnjs
This commit is contained in:
commit
1babc8d31c
3 changed files with 3 additions and 3 deletions
|
@ -1137,7 +1137,7 @@ Reveal.initialize({
|
||||||
// other options ...
|
// other options ...
|
||||||
|
|
||||||
math: {
|
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
|
config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
var RevealMath = window.RevealMath || (function(){
|
var RevealMath = window.RevealMath || (function(){
|
||||||
|
|
||||||
var options = Reveal.getConfig().math || {};
|
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';
|
options.config = options.config || 'TeX-AMS_HTML-full';
|
||||||
|
|
||||||
loadScript( options.mathjax + '?config=' + options.config, function() {
|
loadScript( options.mathjax + '?config=' + options.config, function() {
|
||||||
|
|
|
@ -169,7 +169,7 @@
|
||||||
transition: 'linear',
|
transition: 'linear',
|
||||||
|
|
||||||
math: {
|
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'
|
config: 'TeX-AMS_HTML-full'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue