remove timeout value

This commit is contained in:
Marty Alcala 2016-10-19 13:28:55 -04:00
commit 2d393afd4e

View file

@ -45,7 +45,7 @@ angular.module('copayApp.directives')
$state.go('tabs.send').then(function() { $state.go('tabs.send').then(function() {
$timeout(function() { $timeout(function() {
$state.transitionTo('tabs.send.addressbook', {addressbookEntry: bitcoinAddress}); $state.transitionTo('tabs.send.addressbook', {addressbookEntry: bitcoinAddress});
}, 10); });
}); });
}, 100); }, 100);
}; };