aboutsummaryrefslogtreecommitdiffhomepage
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab2014-04-28 09:13:57 +0200
committerHakim El Hattab2014-04-28 09:13:57 +0200
commitb42fae96e5836abd1207b6fc8d55b5a6127892bc (patch)
tree9b6c6bbe8ca02a825bd42c7e52d2c70f5ca24a77 /js
parent6aaff6395ac35c9f554dc2d6ab3531eab4b08c08 (diff)
load all images directly when in 'no-transform'-mode
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 01472a6..4b84019 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -208,6 +208,17 @@
if( !features.transforms2d && !features.transforms3d ) {
document.body.setAttribute( 'class', 'no-transforms' );
+ // Since JS won't be running any further, we need to load all
+ // images that were intended to lazy load now
+ var images = document.getElementsByTagName( 'img' );
+ for( var i = 0, len = images.length; i < len; i++ ) {
+ var image = images[i];
+ if( image.getAttribute( 'data-src' ) ) {
+ image.setAttribute( 'src', image.getAttribute( 'data-src' ) );
+ image.removeAttribute( 'data-src' );
+ }
+ }
+
// If the browser doesn't support core features we won't be
// using JavaScript to control the presentation
return;