Skip to content
Snippets Groups Projects
Commit 2ec7f372 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Wallet (secondary): fix show certification link (for large screen)

parent 1d2b1575
No related branches found
No related tags found
No related merge requests found
...@@ -494,7 +494,7 @@ function WalletController($scope, $rootScope, $q, $ionicPopup, $timeout, $state, ...@@ -494,7 +494,7 @@ function WalletController($scope, $rootScope, $q, $ionicPopup, $timeout, $state,
}); });
} }
else { else {
$state.go(UIUtils.screen.isSmall() ? 'app.wallet_cert_by_id' : 'app.wallet_cert_by_id_lg', { $state.go(UIUtils.screen.isSmall() ? 'app.wallet_cert_by_id' : 'app.wallet_cert_lg_by_id', {
id: $scope.walletId, id: $scope.walletId,
type: 'received' type: 'received'
}); });
...@@ -509,7 +509,7 @@ function WalletController($scope, $rootScope, $q, $ionicPopup, $timeout, $state, ...@@ -509,7 +509,7 @@ function WalletController($scope, $rootScope, $q, $ionicPopup, $timeout, $state,
}); });
} }
else { else {
$state.go(UIUtils.screen.isSmall() ? 'app.wallet_cert_by_id' : 'app.wallet_cert_by_id_lg', { $state.go(UIUtils.screen.isSmall() ? 'app.wallet_cert_by_id' : 'app.wallet_cert_lg_by_id', {
id: $scope.walletId, id: $scope.walletId,
type: 'given' type: 'given'
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment