react-image-gallery
Advanced tools
Comparing version 0.5.3 to 0.5.4
@@ -88,3 +88,3 @@ 'use strict'; | ||
items={images} | ||
lazyLoad={false} | ||
lazyLoad={true} | ||
showBullets={this.state.showBullets} | ||
@@ -91,0 +91,0 @@ showThumbnails={this.state.showThumbnails} |
{ | ||
"name": "react-image-gallery", | ||
"version": "0.5.3", | ||
"version": "0.5.4", | ||
"description": "Image gallery component for React.JS", | ||
@@ -5,0 +5,0 @@ "main": "./build/image-gallery", |
@@ -216,3 +216,5 @@ 'use strict'; | ||
_handleImageLoad(event) { | ||
event.target.className += 'loaded'; | ||
if (event.target.className.indexOf('loaded') === -1) { | ||
event.target.className += ' loaded'; | ||
} | ||
}, | ||
@@ -219,0 +221,0 @@ |
Sorry, the diff of this file is too big to display
277727
1913