Files
mattermost/webapp/components/markdown_image.jsx
Harrison Healey 2dea567dcf Added MarkdownImage component (#6774)
* Added MarkdownImage component

* Fixed unit tests
2017-06-28 07:30:02 -07:00

20 lines
484 B
JavaScript

// 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}/>;
}
}