Fix advanced button after change tab
This commit is contained in:
parent
a301b5ad6f
commit
a37e125380
2 changed files with 7 additions and 4 deletions
|
|
@ -358,7 +358,9 @@ angular.module('copayApp.controllers').controller('importController',
|
|||
|
||||
$scope.showAdvChange = function() {
|
||||
$scope.showAdv = !$scope.showAdv;
|
||||
$scope.resizeView();
|
||||
$timeout(function() {
|
||||
$scope.resizeView();
|
||||
}, 100);
|
||||
};
|
||||
|
||||
$scope.resizeView = function() {
|
||||
|
|
@ -368,6 +370,7 @@ angular.module('copayApp.controllers').controller('importController',
|
|||
};
|
||||
|
||||
$scope.$on("$ionicView.afterEnter", function(event, data) {
|
||||
$scope.showAdv = false;
|
||||
$scope.init();
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue