aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2013-08-18 14:13:55 -0400
committerHakim El Hattab <hakim.elhattab@gmail.com>2013-08-18 14:13:55 -0400
commitc9853233ae51e84f589797991dbd69dfac103471 (patch)
treea193065c2c4826aa99b4bcc5da361e3990d9d1ae
parent271bae6b563ef1a625cf582934d589759cec7db7 (diff)
downloadfreenode-live-2017-presentation-c9853233ae51e84f589797991dbd69dfac103471.tar
freenode-live-2017-presentation-c9853233ae51e84f589797991dbd69dfac103471.tar.gz
rename math plugin config option
-rw-r--r--examples/math.html2
-rwxr-xr-xplugin/math/math.js8
2 files changed, 5 insertions, 5 deletions
diff --git a/examples/math.html b/examples/math.html
index 867c45e..b0f0763 100644
--- a/examples/math.html
+++ b/examples/math.html
@@ -183,7 +183,7 @@
math: {
// mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',
- dialect: 'TeX-AMS_HTML-full'
+ config: 'TeX-AMS_HTML-full'
},
dependencies: [
diff --git a/plugin/math/math.js b/plugin/math/math.js
index 4e3402e..d55d9d1 100755
--- a/plugin/math/math.js
+++ b/plugin/math/math.js
@@ -6,11 +6,11 @@
*/
var RevealMath = window.RevealMath || (function(){
- var config = Reveal.getConfig().math || {};
- config.mathjax = config.mathjax || 'http://cdn.mathjax.org/mathjax/latest/MathJax.js';
- config.dialect = config.dialect || 'TeX-AMS_HTML-full';
+ var options = Reveal.getConfig().math || {};
+ options.mathjax = options.mathjax || 'http://cdn.mathjax.org/mathjax/latest/MathJax.js';
+ options.config = options.config || 'TeX-AMS_HTML-full';
- loadScript( config.mathjax + '?config=' + config.dialect, function() {
+ loadScript( options.mathjax + '?config=' + options.config, function() {
MathJax.Hub.Config({
messageStyle: 'none',