Merge pull request #206 from cmgustavo/ref/design-58

Minux bug fixes
This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-28 09:44:08 -03:00 committed by GitHub
commit 37fe2de12b
2 changed files with 5 additions and 2 deletions

View File

@ -9,7 +9,10 @@ angular.module('copayApp.controllers').controller('txStatusController', function
$scope.txStatusModal.hide(); $scope.txStatusModal.hide();
if ($scope.fromSendTab) { if ($scope.fromSendTab) {
$ionicHistory.removeBackView(); $ionicHistory.removeBackView();
$state.go('tabs.home'); $state.go('tabs.send');
$timeout(function() {
$state.transitionTo('tabs.home');
}, 100);
} }
}; };

View File

@ -9,7 +9,7 @@
} }
.accept-slide { .accept-slide {
position: fixed; position: fixed;
bottom: 49px; bottom: 0;
width: 100%; width: 100%;
height: 100px; height: 100px;
background-color: #647CE8; background-color: #647CE8;