Skip to content

Commit ef89ed5

Browse files
Add line breaks to ionic keyboard documentation
- Android Notes to web views behaviour on shown keyboard shortend
1 parent 7344614 commit ef89ed5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

release/js/ionic.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -3274,8 +3274,11 @@ ionic.DomUtil.ready(function(){
32743274
* - If your app is running in fullscreen, i.e. you have `<preference name="Fullscreen" value="true" />` in your `config.xml` file
32753275
* you will need to set `ionic.Platform.isFullScreen = true` manually.
32763276
*
3277-
* - You can configure the behavior of the web view when the keyboard shows by setting
3278-
* [android:windowSoftInputMode](http://developer.android.com/reference/android/R.attr.html#windowSoftInputMode) to either `adjustPan`, `adjustResize` or `adjustNothing` in your app's activity in `AndroidManifest.xml`. `adjustResize` is the recommended setting for Ionic, but if for some reason you do use `adjustPan` you will need to set `ionic.Platform.isFullScreen = true`.
3277+
* - You can configure the behavior of the web view when the keyboard shows by setting
3278+
* [android:windowSoftInputMode](http://developer.android.com/reference/android/R.attr.html#windowSoftInputMode)
3279+
* to either `adjustPan`, `adjustResize` or `adjustNothing` in your app's activity in `AndroidManifest.xml`.
3280+
* `adjustResize` is the recommended setting for Ionic, but if for some reason you do use `adjustPan`
3281+
* you will need to set `ionic.Platform.isFullScreen = true`.
32793282
*
32803283
* ```xml
32813284
* <activity android:windowSoftInputMode="adjustResize">
@@ -8864,4 +8867,4 @@ var Easing = (function(){
88648867
};
88658868
})(window);
88668869

8867-
})();
8870+
})();

0 commit comments

Comments
 (0)