From 0741d3be0a927ea659591ef811795018fbac85d0 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Tue, 25 Oct 2016 10:11:34 -0400 Subject: PLT-4404 Replace calls to onInput with onChange to better support IE11 (#4315) * Replace calls to onInput with onChange to better support IE11 * Replaced react-textarea-autosize with react-autosize-textarea --- webapp/components/edit_post_modal.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'webapp/components/edit_post_modal.jsx') diff --git a/webapp/components/edit_post_modal.jsx b/webapp/components/edit_post_modal.jsx index 263fd31c2..2e2f208e6 100644 --- a/webapp/components/edit_post_modal.jsx +++ b/webapp/components/edit_post_modal.jsx @@ -31,7 +31,7 @@ export default class EditPostModal extends React.Component { this.handleEditKeyPress = this.handleEditKeyPress.bind(this); this.handleEditPostEvent = this.handleEditPostEvent.bind(this); this.handleKeyDown = this.handleKeyDown.bind(this); - this.handleInput = this.handleInput.bind(this); + this.handleChange = this.handleChange.bind(this); this.onPreferenceChange = this.onPreferenceChange.bind(this); this.onModalHidden = this.onModalHidden.bind(this); this.onModalShow = this.onModalShow.bind(this); @@ -89,7 +89,7 @@ export default class EditPostModal extends React.Component { $('#edit_post').modal('hide'); } - handleInput(e) { + handleChange(e) { this.setState({ editText: e.target.value }); @@ -230,7 +230,7 @@ export default class EditPostModal extends React.Component {