summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_body.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-11-03 15:39:40 -0500
committerChristopher Speller <crspeller@gmail.com>2015-11-03 15:39:40 -0500
commitb1a8cf6fc56d25b5e3f5425d06c52d379b900ebc (patch)
tree347ec343d31922f33abba844f1cdc359d0c9ea06 /web/react/components/post_body.jsx
parentc68e53aa23ebaf657d2ba29e5db83271e79bea1e (diff)
downloadchat-b1a8cf6fc56d25b5e3f5425d06c52d379b900ebc.tar.gz
chat-b1a8cf6fc56d25b5e3f5425d06c52d379b900ebc.tar.bz2
chat-b1a8cf6fc56d25b5e3f5425d06c52d379b900ebc.zip
Fixing height of embeded images
Diffstat (limited to 'web/react/components/post_body.jsx')
-rw-r--r--web/react/components/post_body.jsx9
1 files changed, 7 insertions, 2 deletions
diff --git a/web/react/components/post_body.jsx b/web/react/components/post_body.jsx
index e1f495d54..e4094daf3 100644
--- a/web/react/components/post_body.jsx
+++ b/web/react/components/post_body.jsx
@@ -77,12 +77,12 @@ export default class PostBody extends React.Component {
this.isGifLoading = true;
const gif = new Image();
- gif.src = src;
gif.onload = (
() => {
this.setState({gifLoaded: true});
}
);
+ gif.src = src;
}
createGifEmbed(link) {
@@ -92,7 +92,12 @@ export default class PostBody extends React.Component {
if (!this.state.gifLoaded) {
this.loadGif(link);
- return null;
+ return (
+ <img
+ className='gif-div placeholder'
+ height='500px'
+ />
+ );
}
return (