mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
.click() was what I was looking for...
This commit is contained in:
parent
29b4f59982
commit
0fa7f6cb63
@ -27,7 +27,7 @@ module.exports = React.createClass({
|
||||
mixins: [MessageComposerController],
|
||||
|
||||
onUploadClick(ev) {
|
||||
//this.refs.uploadInput.getDOMNode.
|
||||
this.refs.uploadInput.getDOMNode().click();
|
||||
},
|
||||
|
||||
onUploadFileSelected: function(ev) {
|
||||
@ -38,7 +38,7 @@ module.exports = React.createClass({
|
||||
|
||||
render: function() {
|
||||
var me = this.props.room.getMember(MatrixClientPeg.get().credentials.userId);
|
||||
var uploadInputStyle = {display: 'block'};
|
||||
var uploadInputStyle = {display: 'none'};
|
||||
return (
|
||||
<div className="mx_MessageComposer">
|
||||
<div className="mx_MessageComposer_wrapper">
|
||||
|
Loading…
Reference in New Issue
Block a user