Browse Source

enforce max width/height on iframes (#244), disabled mouse wheel navigation by default

embed
Hakim El Hattab 12 years ago
parent
commit
c61dc00a98
  1. 2
      README.md
  2. 3
      css/reveal.css
  3. 2
      css/reveal.min.css
  4. 2
      js/reveal.js
  5. 4
      js/reveal.min.js

2
README.md

@ -83,7 +83,7 @@ Reveal.initialize({
autoSlide: 0,
// Enable slide navigation via mouse wheel
mouseWheel: true,
mouseWheel: false,
// Apply a 3D roll to links on hover
rollingLinks: true,

3
css/reveal.css

@ -176,7 +176,8 @@ body {
}
/* Preserve aspect ratio and scale image so it's bound within the section */
.reveal img {
.reveal img,
.reveal iframe {
max-width: 100%;
max-height: 100%;
}

2
css/reveal.min.css

File diff suppressed because one or more lines are too long

2
js/reveal.js

@ -42,7 +42,7 @@ var Reveal = (function(){
autoSlide: 0,
// Enable slide navigation via mouse wheel
mouseWheel: true,
mouseWheel: false,
// Apply a 3D roll to links on hover
rollingLinks: true,

4
js/reveal.min.js

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save