From 341d1a12bf8033fca50bfa22ea6d0bf6fd210a56 Mon Sep 17 00:00:00 2001 From: Andrei Coman Date: Wed, 8 Apr 2015 08:26:14 -0700 Subject: [PATCH] [react_native] JS files from D1955360: [react_native] Implement TextInput end editing --- Libraries/Components/TextInput/TextInput.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Libraries/Components/TextInput/TextInput.js b/Libraries/Components/TextInput/TextInput.js index dc786da20..db6ceea33 100644 --- a/Libraries/Components/TextInput/TextInput.js +++ b/Libraries/Components/TextInput/TextInput.js @@ -503,6 +503,8 @@ var TextInput = React.createClass({ onFocus={this._onFocus} onBlur={this._onBlur} onChange={this._onChange} + onEndEditing={this.props.onEndEditing} + onSubmitEditing={this.props.onSubmitEditing} password={this.props.password} placeholder={this.props.placeholder} value={this.state.bufferedValue}