Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions src/Gallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class Gallery extends Component {

componentDidMount () {
this.onResize();
window.addEventListener('resize', this.onResize);
}

componentWillReceiveProps (np) {
Expand Down Expand Up @@ -250,9 +249,19 @@ class Gallery extends Component {
tileViewportStyle={this.props.tileViewportStyle}
thumbnailStyle={this.props.thumbnailStyle}
/>;});

var resizeIframeStyles = {
height: 0,
margin: 0,
padding: 0,
overflow: "hidden",
borderWidth: 0,
position: "fixed",
backgroundColor: "transparent",
width: "100%"
};
return (
<div id={this.props.id} className="ReactGridGallery" ref={(c) => this._gallery = c}>
<iframe style={resizeIframeStyles} ref={(c) => c && c.contentWindow.addEventListener('resize', this.onResize) } />
{images}
<Lightbox
images={this.props.images}
Expand Down