diff --git a/keyboard/src/ios/CDVKeyboard.m b/keyboard/src/ios/CDVKeyboard.m index c2a6fe9..ea8bbc0 100644 --- a/keyboard/src/ios/CDVKeyboard.m +++ b/keyboard/src/ios/CDVKeyboard.m @@ -208,7 +208,8 @@ - (void)formAccessoryBarKeyboardWillShow:(NSNotification*)notif // remove the extra scroll space for the form accessory bar CGRect newFrame = self.webView.scrollView.frame; newFrame.size.height += peripheralView.frame.size.height; - self.webView.scrollView.frame = newFrame; + // Commented out to resolve this issue: https://issues.apache.org/jira/browse/CB-5717 + //self.webView.scrollView.frame = newFrame; _accessoryBarHeight = peripheralView.frame.size.height;