##// END OF EJS Templates
Updated reveal submodule which fixed notes previous patch.
damianavila -
Show More
@@ -1,1 +1,1 b''
1 Subproject commit 784fa9d2e3570054728d21f8098199dc9d4164b9
1 Subproject commit 24c493fb83bcc51e5db59e5abca246493eac8700
@@ -1,81 +1,81 b''
1 1
2 2 <meta charset="utf-8" />
3 3 <meta http-equiv="X-UA-Compatible" content="chrome=1">
4 4
5 5 <meta name="apple-mobile-web-app-capable" content="yes" />
6 6 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
7 7
8 8 <link rel="stylesheet" href="reveal/css/reveal.css">
9 9 <link rel="stylesheet" href="reveal/css/theme/simple.css" id="theme">
10 10
11 11 <!-- For syntax highlighting -->
12 12 <link rel="stylesheet" href="reveal/lib/css/zenburn.css">
13 13
14 14 <!-- If the query includes 'print-pdf', use the PDF print sheet -->
15 15 <script>
16 16 document.write( '<link rel="stylesheet" href="reveal/css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
17 17 </script>
18 18
19 19 <!--[if lt IE 9]>
20 20 <script src="reveal/lib/js/html5shiv.js"></script>
21 21 <![endif]-->
22 22
23 23 %slides%
24 24
25 25 <!-- Social buttons -->
26 26 <div class="addthis_toolbox addthis_floating_style addthis_32x32_style" style="left:20px;top:20px;">
27 27 <a class="addthis_button_twitter"></a>
28 28 <a class="addthis_button_google_plusone_share"></a>
29 29 <a class="addthis_button_linkedin"></a>
30 30 <a class="addthis_button_facebook"></a>
31 31 <a class="addthis_button_more"></a>
32 32 </div>
33 33 <!-- End of social buttons -->
34 34
35 35 <!-- MathJax configuration -->
36 36 <script type="text/x-mathjax-config">
37 37 MathJax.Hub.Config({
38 38 tex2jax: {
39 39 inlineMath: [ ['$','$'], ["\\(","\\)"] ],
40 40 displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
41 41 },
42 42 displayAlign: 'center', // Change this to 'center' to center equations.
43 43 "HTML-CSS": {
44 44 styles: {'.MathJax_Display': {"margin": 0}}
45 45 }
46 46 });
47 47 </script>
48 48 <!-- End of mathjax configuration -->
49 49
50 50 <script src="reveal/lib/js/head.min.js"></script>
51 51
52 52 <script src="reveal/js/reveal.min.js"></script>
53 53
54 54 <script>
55 55
56 56 // Full list of configuration options available here: https://github.com/hakimel/reveal.js#configuration
57 57 Reveal.initialize({
58 58 controls: true,
59 59 progress: true,
60 60 history: true,
61 61
62 62 theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
63 63 transition: Reveal.getQueryHash().transition || 'linear', // default/cube/page/concave/zoom/linear/none
64 64
65 65 // Optional libraries used to extend on reveal.js
66 66 dependencies: [
67 67 { src: 'reveal/lib/js/classList.js', condition: function() { return !document.body.classList; } },
68 68 { src: 'reveal/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
69 69 { src: 'reveal/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
70 { src: 'notes/notes.js', async: true, condition: function() { return !!document.body.classList; } },
70 { src: 'reveal/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } },
71 71 { src: 'http://s7.addthis.com/js/300/addthis_widget.js', async: true},
72 72 { src: 'js/mathjax-onload.js', async: true}
73 73 ]
74 74 });
75 75 </script>
76 76
77 77 <script>
78 78 Reveal.addEventListener( 'slidechanged', function( event ) {
79 79 MathJax.Hub.Rerender(event.currentSlide);
80 80 });
81 81 </script> No newline at end of file
1 NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now