Add note to README about how to disable scaling
[git-branching.git] / index.html
blob0c7a67279bd73d40b7b1cd9f69de6385c26faf98
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
7 <title>reveal.js</title>
9 <link rel="stylesheet" href="css/reveal.css">
10 <link rel="stylesheet" href="css/theme/black.css">
12 <!-- Theme used for syntax highlighting of code -->
13 <link rel="stylesheet" href="lib/css/zenburn.css">
15 <!-- Printing and PDF exports -->
16 <script>
17 var link = document.createElement( 'link' );
18 link.rel = 'stylesheet';
19 link.type = 'text/css';
20 link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
21 document.getElementsByTagName( 'head' )[0].appendChild( link );
22 </script>
23 </head>
24 <body>
25 <div class="reveal">
26 <div class="slides">
27 <section>Slide 1</section>
28 <section>Slide 2</section>
29 </div>
30 </div>
32 <script src="lib/js/head.min.js"></script>
33 <script src="js/reveal.js"></script>
35 <script>
36 // More info https://github.com/hakimel/reveal.js#configuration
37 Reveal.initialize({
38 history: true,
40 // More info https://github.com/hakimel/reveal.js#dependencies
41 dependencies: [
42 { src: 'plugin/markdown/marked.js' },
43 { src: 'plugin/markdown/markdown.js' },
44 { src: 'plugin/notes/notes.js', async: true },
45 { src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
47 });
48 </script>
49 </body>
50 </html>