Fix scroll over input on iOS
This commit is contained in:
parent
e5d415ab44
commit
0e174da260
3 changed files with 5 additions and 3 deletions
|
|
@ -1,2 +0,0 @@
|
||||||
|
|
||||||
<div class="extra-margin-bottom"></div>
|
|
||||||
|
|
@ -12,7 +12,6 @@ body {
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
-webkit-touch-callout: none !important;
|
-webkit-touch-callout: none !important;
|
||||||
-webkit-overflow-scrolling: touch;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
|
|
|
||||||
|
|
@ -547,6 +547,11 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
|
||||||
$rootScope.$digest();
|
$rootScope.$digest();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (window.cordova.plugins.Keyboard) {
|
||||||
|
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
|
||||||
|
cordova.plugins.Keyboard.disableScroll(true);
|
||||||
|
}
|
||||||
|
|
||||||
$ionicPlatform.registerBackButtonAction(function(event) {
|
$ionicPlatform.registerBackButtonAction(function(event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}, 100);
|
}, 100);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue