remove android keyboard extra padding

This commit is contained in:
Gabriel Bazán 2016-10-14 11:29:56 -03:00
commit 4b41af20db
2 changed files with 9 additions and 7 deletions

View file

@ -900,13 +900,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
}
window.addEventListener('native.keyboardshow', function() {
document.querySelector('div.tabs').style.display = 'none';
angular.element(document.querySelector('ion-content.has-tabs')).css('bottom', 0);
});
window.addEventListener('native.keyboardhide', function() {
var tabs = document.querySelectorAll('div.tabs');
angular.element(tabs[0]).css('display', '');
document.body.classList.add('keyboard-open');
});
$ionicPlatform.registerBackButtonAction(function(e) {

View file

@ -423,3 +423,11 @@ input[type=file] {
.left {
float: left;
}
.keyboard-open .tabs{
display: none;
}
.keyboard-open .has-tabs{
bottom:0;
}