diff --git a/src/js/routes.js b/src/js/routes.js index da09f3a7b..5b03f365f 100644 --- a/src/js/routes.js +++ b/src/js/routes.js @@ -1209,10 +1209,12 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr function checkAndApplyLock(onResume) { var defaultView = 'tabs.home'; +console.log('[routes.js.1211]'); //TODO if (!platformInfo.isCordova && !platformInfo.isDevel) { goTo(defaultView); } +console.log('[routes.js.1216]'); //TODO function goTo(nextView) { nextView = nextView || defaultView; $state.transitionTo(nextView).then(function() { @@ -1287,6 +1289,7 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr historyRoot: true }); +console.log('[routes.js.1289]'); //TODO checkAndApplyLock(); }); };