diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2011-12-04 18:55:48 -0800 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2011-12-04 18:55:48 -0800 |
commit | 233160ff2325037a750cfc8153f5c82ac0811219 (patch) | |
tree | 9dbb327bc3bd36297331f2c93821ce8e5ee9e6b0 /index.html | |
parent | b36e8d5c4e18fd393013949daca9ef91e1860334 (diff) | |
download | fosdem-2018-presentation-233160ff2325037a750cfc8153f5c82ac0811219.tar fosdem-2018-presentation-233160ff2325037a750cfc8153f5c82ac0811219.tar.gz |
cleanup & comments
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 26 |
1 files changed, 4 insertions, 22 deletions
@@ -100,7 +100,8 @@ <section> <h2>Pretty Code</h2> - <pre><code>var supports3DTransforms = document.body.style['webkitPerspective'] !== undefined || + <pre><code> +var supports3DTransforms = document.body.style['webkitPerspective'] !== undefined || document.body.style['MozPerspective'] !== undefined || document.body.style['perspective'] !== undefined; @@ -120,7 +121,8 @@ function linkify( selector ) { } } -linkify( 'a' );</code></pre> +linkify( 'a' ); + </code></pre> <p>Courtesy of <a href="http://softwaremaniacs.org/soft/highlight/en/description/">highlight.js</a>.</p> </section> @@ -191,25 +193,5 @@ linkify( 'a' );</code></pre> </script> - - <!-- Everything below this point is unrelated to the slideshow --> - - <div style="position: absolute; bottom: 10px; left: 50%; margin-left: -95px"> - <a href="http://twitter.com/share" class="twitter-share-button" data-text="reveal.js - a 3D slideshow tool from @hakimel." data-url="http://lab.hakim.se/reveal-js" data-count="small" data-related="hakimel"></a> - <iframe id="facebook-button" src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fapp.hakim.se%2Freveal-js%2F&layout=button_count&show_faces=false&width=90&action=like&font=arial&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:85px; height:24px; position: relative; top: 4px;" allowTransparency="true"></iframe> - <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> - </div> - - <script> - var _gaq = [['_setAccount', 'UA-15240703-1'], ['_trackPageview']]; - (function(d, t) { - var g = d.createElement(t), - s = d.getElementsByTagName(t)[0]; - g.async = true; - g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; - s.parentNode.insertBefore(g, s); - })(document, 'script'); - </script> - </body> </html>
\ No newline at end of file |