diff options
author | Hakim El Hattab | 2013-08-13 00:10:14 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-13 00:10:14 -0400 |
commit | e7ee8858a263e2db2d65eb77e7dfbea32ca042c2 (patch) | |
tree | 630d78ba6a63d57d0d94706b06ef2ced55a14fad /examples | |
parent | 3e23b8b690222d914b2d6839eabd18f6c08f0eed (diff) |
remove unused code
Diffstat (limited to 'examples')
-rw-r--r-- | examples/math.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/examples/math.html b/examples/math.html index 03fe22a..7d3eba2 100644 --- a/examples/math.html +++ b/examples/math.html @@ -49,7 +49,9 @@ <section> <h3>The Cauchy-Schwarz Inequality</h3> - \[ \left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) \] + <script type="math/tex; mode=display"> + \left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) + </script> </section> <section> @@ -185,10 +187,7 @@ }, dependencies: [ - { src: '../lib/js/classList.js', condition: function() { return !document.body.classList; } }, - { src: '../plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, - { src: '../plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, - { src: '../plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, + { src: '../lib/js/classList.js' }, { src: '../plugin/math/math.js', async: true } ] }); |