summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-11-04 14:31:15 -0400
committerGitHub <noreply@github.com>2016-11-04 14:31:15 -0400
commitb37eb09c37f5580e08ebdc2ae3a9c5ce09463230 (patch)
tree1e91d40b5f75d5fe9af036310e21bdf159a04f36 /webapp/components/post_view
parentec7f3ceee8b105036ea14550d102a6a1fa14cf82 (diff)
downloadchat-b37eb09c37f5580e08ebdc2ae3a9c5ce09463230.tar.gz
chat-b37eb09c37f5580e08ebdc2ae3a9c5ce09463230.tar.bz2
chat-b37eb09c37f5580e08ebdc2ae3a9c5ce09463230.zip
Removing ALT-click beacuse bug was not fixed (#4454)
Diffstat (limited to 'webapp/components/post_view')
-rw-r--r--webapp/components/post_view/components/post.jsx10
1 files changed, 1 insertions, 9 deletions
diff --git a/webapp/components/post_view/components/post.jsx b/webapp/components/post_view/components/post.jsx
index 870d4e1af..823cb8ce7 100644
--- a/webapp/components/post_view/components/post.jsx
+++ b/webapp/components/post_view/components/post.jsx
@@ -4,7 +4,6 @@
import PostHeader from './post_header.jsx';
import PostBody from './post_body.jsx';
import ProfilePicture from 'components/profile_picture.jsx';
-import * as PostActions from 'actions/post_actions.jsx';
import Constants from 'utils/constants.jsx';
const ActionTypes = Constants.ActionTypes;
@@ -22,7 +21,6 @@ export default class Post extends React.Component {
this.handleCommentClick = this.handleCommentClick.bind(this);
this.handleDropdownOpened = this.handleDropdownOpened.bind(this);
this.forceUpdateInfo = this.forceUpdateInfo.bind(this);
- this.handlePostClick = this.handlePostClick.bind(this);
this.state = {
dropdownOpened: false
@@ -50,12 +48,7 @@ export default class Post extends React.Component {
this.refs.info.forceUpdate();
this.refs.header.forceUpdate();
}
- handlePostClick(e) {
- if (e.altKey) {
- e.preventDefault();
- PostActions.setUnreadPost(this.props.post.channel_id, this.props.post.id);
- }
- }
+
shouldComponentUpdate(nextProps, nextState) {
if (!Utils.areObjectsEqual(nextProps.post, this.props.post)) {
return true;
@@ -238,7 +231,6 @@ export default class Post extends React.Component {
<div
id={'post_' + post.id}
className={'post ' + sameUserClass + ' ' + compactClass + ' ' + rootUser + ' ' + postType + ' ' + currentUserCss + ' ' + shouldHighlightClass + ' ' + systemMessageClass + ' ' + hideControls + ' ' + dropdownOpenedClass}
- onClick={this.handlePostClick}
>
<div className={'post__content ' + centerClass}>
{profilePicContainer}