From b9e16f41f161c772e1701c4ac47ca5319c706912 Mon Sep 17 00:00:00 2001 From: JoramWilander Date: Wed, 2 Sep 2015 14:26:01 -0400 Subject: Remove use of getDOMNode from multiple files. --- web/react/components/user_settings_security.jsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'web/react/components/user_settings_security.jsx') diff --git a/web/react/components/user_settings_security.jsx b/web/react/components/user_settings_security.jsx index 82828743e..a9f62097a 100644 --- a/web/react/components/user_settings_security.jsx +++ b/web/react/components/user_settings_security.jsx @@ -107,7 +107,6 @@ export default class SecurityTab extends React.Component { var updateSectionStatus; var passwordSection; - var self = this; if (this.props.activeSection === 'password') { var inputs = []; var submit = null; @@ -163,10 +162,10 @@ export default class SecurityTab extends React.Component { } updateSectionStatus = function resetSection(e) { - self.props.updateSection(''); - self.setState({currentPassword: '', newPassword: '', confirmPassword: '', serverError: null, passwordError: null}); + this.props.updateSection(''); + this.setState({currentPassword: '', newPassword: '', confirmPassword: '', serverError: null, passwordError: null}); e.preventDefault(); - }; + }.bind(this); passwordSection = (