We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffb548e commit 4b51590Copy full SHA for 4b51590
src/Gallery.js
@@ -260,8 +260,11 @@ class Gallery extends Component {
260
width: "100%"
261
};
262
return (
263
- <div id={this.props.id} className="ReactGridGallery" ref={(c) => this._gallery = c}>
264
- <iframe style={resizeIframeStyles} ref={(c) => c && c.contentWindow && c.contentWindow.addEventListener('resize', this.onResize) } />
+ <div id={this.props.id}
+ className="ReactGridGallery"
265
+ ref={(c) => this._gallery = c}>
266
+ <iframe style={resizeIframeStyles}
267
+ ref={(c) => c && c.contentWindow && c.contentWindow.addEventListener('resize', this.onResize) } />
268
{images}
269
<Lightbox
270
images={this.props.images}
0 commit comments