Merge pull request #1969 from matiu/bug/focus

store profile (only) on close)
This commit is contained in:
Ivan Socolsky 2014-12-04 13:19:54 -03:00
commit 1dd90797e6

View file

@ -316,7 +316,11 @@ angular.module('copayApp.services')
root.signout = function() {
if ($rootScope.iden) {
$rootScope.iden.close();
$rootScope.iden.store({
noWallets: true
}, function() {
$rootScope.iden.close();
});
}
};