Revert "TextInput should call blur and focus methods of selectionState"

This commit is contained in:
Andrei-Ovidiu Coman 2016-02-02 13:19:58 +00:00
parent f3ffafb756
commit 729c04b58b
1 changed files with 0 additions and 8 deletions

View File

@ -525,10 +525,6 @@ var TextInput = React.createClass({
if (this.props.onFocus) {
this.props.onFocus(event);
}
if (this.props.selectionState) {
this.props.selectionState.focus();
}
},
_onPress: function(event: Event) {
@ -569,10 +565,6 @@ var TextInput = React.createClass({
if (this.props.onBlur) {
this.props.onBlur(event);
}
if (this.props.selectionState) {
this.props.selectionState.blur();
}
},
_onTextInput: function(event: Event) {