summaryrefslogtreecommitdiffstats
path: root/webapp/components/markdown_image.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/markdown_image.jsx')
-rw-r--r--webapp/components/markdown_image.jsx19
1 files changed, 19 insertions, 0 deletions
diff --git a/webapp/components/markdown_image.jsx b/webapp/components/markdown_image.jsx
new file mode 100644
index 000000000..75a6ce9ea
--- /dev/null
+++ b/webapp/components/markdown_image.jsx
@@ -0,0 +1,19 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+import React, {PureComponent} from 'react';
+
+import {postListScrollChange} from 'actions/global_actions.jsx';
+
+export default class MarkdownImage extends PureComponent {
+ handleLoad = () => {
+ postListScrollChange();
+ }
+
+ render() {
+ const props = {...this.props};
+ props.onLoad = this.handleLoad;
+
+ return <img {...props}/>;
+ }
+}