Fix height header

This commit is contained in:
Jean-Baptiste Dominguez 2018-08-13 16:13:29 +09:00
commit 30230304b6

View file

@ -304,10 +304,13 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
}; };
function refreshAmountSection(scrollPos) { function refreshAmountSection(scrollPos) {
var AMOUNT_HEIGHT_BASE = 270; var AMOUNT_HEIGHT_BASE = 210;
$scope.showBalanceButton = false; $scope.showBalanceButton = false;
if ($scope.status) { if ($scope.status) {
$scope.showBalanceButton = ($scope.status.totalBalanceSat != $scope.status.spendableAmount); $scope.showBalanceButton = ($scope.status.totalBalanceSat != $scope.status.spendableAmount);
if ($scope.showBalanceButton) {
AMOUNT_HEIGHT_BASE = 270;
}
} }
if (!$scope.amountIsCollapsible) { if (!$scope.amountIsCollapsible) {
var t = ($scope.showBalanceButton ? 15 : 45); var t = ($scope.showBalanceButton ? 15 : 45);