You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "cordova-plugin-native-keyboard",
3
-
"version": "2.0.0",
3
+
"version": "2.0.1",
4
4
"description": "This plugin aims to solve common keyboard problems encountered with Cordova / PhoneGap apps. The messenger component (see screenshots) is ready for production, but this plugin will have more tricks up its sleeve. I'll document those once they're ready for primetime as well.",
Copy file name to clipboardExpand all lines: src/ios/CDVNativeKeyboard.m
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@ @implementation CDVNativeKeyboard
5
5
6
6
BOOL DEBUG_KEYBOARD = NO;
7
7
8
+
// a little hack for when the messenger keyboard has been shown and hidden, then a regular textfield is shown - this prevents the messenger bar from being shown
9
+
int CDVNativeKeyboardHideKeyboardOffscreenOffset = 0;
10
+
8
11
// TODO move as much as possible to the helper, and move this to the framwework and wire the Cordova-SLK stuff via the NKHelper class
0 commit comments