diff --git a/public/index.html b/public/index.html index e77f333c4..b03b75e9c 100644 --- a/public/index.html +++ b/public/index.html @@ -1,5 +1,5 @@  - + diff --git a/src/js/init.js b/src/js/init.js index 12802cb5a..e5dc0ab5e 100644 --- a/src/js/init.js +++ b/src/js/init.js @@ -2,10 +2,10 @@ angular.element(document).ready(function() { - // this is now in HTML tab, witch is compatible with Windows Phone - // var startAngular = function() { - // angular.bootstrap(document, ['copayApp']); - // }; + // Run copayApp after device is ready. + var startAngular = function() { + angular.bootstrap(document, ['copayApp']); + }; /* Cordova specific Init */ if (window.cordova !== undefined) { @@ -59,10 +59,10 @@ angular.element(document).ready(function() { window.plugins.webintent.onNewIntent(handleBitcoinURI); window.handleOpenURL = handleBitcoinURI; - // startAngular(); + startAngular(); }, false); } else { - // startAngular(); + startAngular(); } });