summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_list.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-08-11 09:48:25 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-08-12 12:29:57 -0700
commit9baafdb372d92c96a4063f11531f4fb5d9e7059e (patch)
tree02b99fbbc104d68cdbf5a836a1a892fd13e3d80e /web/react/components/post_list.jsx
parent81d7599f75b11d619f8ee9440394de3f9f86f39f (diff)
downloadchat-9baafdb372d92c96a4063f11531f4fb5d9e7059e.tar.gz
chat-9baafdb372d92c96a4063f11531f4fb5d9e7059e.tar.bz2
chat-9baafdb372d92c96a4063f11531f4fb5d9e7059e.zip
Changed structure to keep code contained to file_upload.jsx
Diffstat (limited to 'web/react/components/post_list.jsx')
-rw-r--r--web/react/components/post_list.jsx6
1 files changed, 1 insertions, 5 deletions
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx
index cf0c4c663..826d34a7d 100644
--- a/web/react/components/post_list.jsx
+++ b/web/react/components/post_list.jsx
@@ -280,10 +280,6 @@ module.exports = React.createClass({
}
);
},
- handleDragEnter: function() {
- console.log("HERE ENTER");
- this.setState({fileDrag: true});
- },
getInitialState: function() {
return getStateFromStores();
},
@@ -472,7 +468,7 @@ module.exports = React.createClass({
return (
<div ref="postlist" className="post-list-holder-by-time">
- <div className={"post-list__table " + fileDragOverlay} onDragEnter={this.handleDragEnter}>
+ <div className="post-list__table">
<div className="post-list__content">
{ more_messages }
{ postCtls }