Video of the problem from a different user but its the same
http://imgur.com/ca2cNZv
I have a background image set as follows :
.pane {
backg
Add the following code in your 'App.js'. add
$window.addEventListener('native.keyboardhide', function (event) {
$rootScope.$broadcast('native.keyboardhide', event);
});
when app.run() method call with $window and $rootScope dependency. also, add
if (window.cordova && window.cordova.plugins && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
cordova.plugins.Keyboard.disableScroll(true);
}
in $ionicPlatform.ready().
please ensure that your code is updated by inspecting your app. If it's not updated then try to remove and add platform and rebuild your app.