[Treehouse] Sync from android permalink keyboard layout changes

This commit is contained in:
Nathan Spaun 2015-07-13 18:17:35 -07:00
parent 509e9c96e2
commit 875ab073ea

View File

@ -469,9 +469,9 @@ var ScrollResponderMixin = {
this.props.onKeyboardWillHide && this.props.onKeyboardWillHide(e);
},
scrollResponderKeyboardDidShow: function() {
scrollResponderKeyboardDidShow: function(e: Event) {
this.keyboardWillOpenTo = null;
this.props.onKeyboardDidShow && this.props.onKeyboardDidShow();
this.props.onKeyboardDidShow && this.props.onKeyboardDidShow(e);
},
scrollResponderKeyboardDidHide: function() {