Skip to content

Commit

Permalink
Fixed links to js/css in about.html
Browse files Browse the repository at this point in the history
  • Loading branch information
calebsmith committed Mar 2, 2014
1 parent 96b7fce commit fd7830e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions about.html
Expand Up @@ -12,12 +12,12 @@
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />

<link rel="stylesheet" href="/reveal/css/reveal.css">
<link rel="stylesheet" href="/css/gdicool.css" id="theme">
<link rel="stylesheet" href="reveal/css/reveal.css">
<link rel="stylesheet" href="css/gdicool.css" id="theme">

<!-- For syntax highlighting -->
<!-- light editor<link rel="stylesheet" href="lib/css/light.css">-->
<!-- dark editor--><link rel="stylesheet" href="/css/dark.css">
<!-- dark editor--><link rel="stylesheet" href="css/dark.css">

<!-- If use the PDF print sheet so students can print slides-->

Expand Down Expand Up @@ -59,8 +59,8 @@ <h3>About</h3>
</footer>
</div>

<script src="/reveal/lib/js/head.min.js"></script>
<script src="/reveal/js/reveal.min.js"></script>
<script src="reveal/lib/js/head.min.js"></script>
<script src="reveal/js/reveal.min.js"></script>

<script>
// Full list of configuration options available here:
Expand All @@ -75,12 +75,12 @@ <h3>About</h3>

// Optional libraries used to extend on reveal.js
dependencies: [
{ src: '/reveal/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: '/reveal/plugin/markdown/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '/reveal/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '/reveal/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: '/reveal/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: '/reveal/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
{ src: 'reveal/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'reveal/plugin/markdown/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'reveal/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'reveal/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'reveal/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});

Expand Down

0 comments on commit fd7830e

Please sign in to comment.