diff options
| author | PliablePixels <pliablepixels@gmail.com> | 2015-07-04 17:28:11 -0400 |
|---|---|---|
| committer | PliablePixels <pliablepixels@gmail.com> | 2015-07-04 17:28:11 -0400 |
| commit | cb91226a89d84b39c47b15fc88ef0b56ac7ad5fd (patch) | |
| tree | bd24c6ee8e8352cc309d991f655637a8d9c80035 /www/js/app.js | |
| parent | c2ac88f9a4a1c945988acd89c45e394bde08529a (diff) | |
fixed screen bouncing on input
Diffstat (limited to 'www/js/app.js')
| -rw-r--r-- | www/js/app.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/www/js/app.js b/www/js/app.js index 05bef7fa..d3e97a17 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -296,6 +296,9 @@ angular.module('zmApp', [ if (window.cordova && window.cordova.plugins.Keyboard) { cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true); + // solves screen bouncing on form input + // since I am using JS Scroll + cordova.plugins.Keyboard.disableScroll(true); } if (window.StatusBar) { // org.apache.cordova.statusbar required |
