diff options
author | John MacFarlane <jgm@berkeley.edu> | 2013-05-01 12:45:12 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2013-05-01 12:45:12 -0700 |
commit | fd59e11e15d0dc5a7187bba79f1a5adf294a1c35 (patch) | |
tree | 2d8ca90d6c8eecaaaea3b46800a1ddcd47f81472 | |
parent | 4696679283b08559108e5c02ca4cdbfd203cca9e (diff) | |
download | pandoc-fd59e11e15d0dc5a7187bba79f1a5adf294a1c35.tar.gz |
Fixed errors introduced in last revealjs template update.
-rw-r--r-- | default.revealjs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/default.revealjs b/default.revealjs index f0f16fcac..7233e202a 100644 --- a/default.revealjs +++ b/default.revealjs @@ -79,8 +79,8 @@ $endfor$ progress: true, history: true, center: true, - theme: '$if(theme)$$theme$$else$Reveal.getQueryHash().theme$endif$', // available themes are in /css/theme - transition: '$if(transition)$$transition$$else$Reveal.getQueryHash().transition$endif$', // default/cube/page/concave/zoom/linear/fade/none + theme: $if(theme)$'$theme$'$else$Reveal.getQueryHash().theme$endif$, // available themes are in /css/theme + transition: $if(transition)$'$transition$'$else$Reveal.getQueryHash().transition || 'default'$endif$, // default/cube/page/concave/zoom/linear/fade/none // Optional libraries used to extend on reveal.js dependencies: [ @@ -88,7 +88,7 @@ $endfor$ { src: '$revealjs-url$/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, { src: '$revealjs-url$/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }, // { src: '$revealjs-url$/plugin/search/search.js', async: true, condition: function() { return !!document.body.classList; }, } - { src: '$revealjs-url$/plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } } +// { src: '$revealjs-url$/plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } } ]}); </script> </body> |