diff options
author | Owen Versteeg | 2012-08-12 22:46:06 -0300 |
---|---|---|
committer | Owen Versteeg | 2012-08-12 22:46:06 -0300 |
commit | 5170fe026c051fa70cc147d0baad72eb6a9d9795 (patch) | |
tree | 31c281d9135cc26d77075849df3c782f75f93d40 /index.html | |
parent | 6fa17971b5b9393a38c4a93f9dda7cf4062508e0 (diff) |
made page validate
woohoo! reveal.js is now HTML5 compliant!
this is validated using the http://validator.w3.org/ and the http://html5.validator.nu/ services.
this was accomplished using a tad of JavaScript to get around a fullscreen bug.
This also (slightly unintentionally but helpfully) solves a tiny bug with fullscreening in old Opera 11.52 (I think, could be 11.51 or other)
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -208,7 +208,7 @@ function linkify( selector ) { var nodes = document.querySelectorAll( selector ); - for( var i = 0, len = nodes.length; i < len; i++ ) { + for( var i = 0, len = nodes.length; i < len; i++ ) { var node = nodes[i]; if( !node.className ) ) { @@ -250,7 +250,10 @@ function linkify( selector ) { <section> <h2>Export to PDF</h2> <p>Presentations can be <a href="https://github.com/hakimel/reveal.js#pdf-export">exported to PDF</a>, below is an example that's been uploaded to SlideShare.</p> - <iframe src="http://www.slideshare.net/slideshow/embed_code/13872948" width="455" height="356" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px" allowfullscreen> </iframe> + <iframe id="slideshare" src="http://www.slideshare.net/slideshow/embed_code/13872948" width="455" height="356" style="margin:0;overflow:hidden;border:1px solid #CCC;border-width:1px 1px 0;margin-bottom:5px" allowfullscreen> </iframe> + <script> + document.getElementById('slideshare').attributeName = 'allowfullscreen'; + </script> </section> <section> |