diff --git a/js/init.js b/js/init.js index 2a07527aa..6923a9e6d 100644 --- a/js/init.js +++ b/js/init.js @@ -1,9 +1,11 @@ 'use strict'; angular.element(document).ready(function() { - var startAngular = function() { - angular.bootstrap(document, ['copayApp']); - }; + + // this is now in HTML tab, witch is compatible with Windows Phone + // var startAngular = function() { + // angular.bootstrap(document, ['copayApp']); + // }; /* Cordova specific Init */ if (window.cordova !== undefined) { @@ -28,10 +30,10 @@ angular.element(document).ready(function() { window.plugins.webintent.onNewIntent(handleBitcoinURI); window.handleOpenURL = handleBitcoinURI; - startAngular(); + // startAngular(); }, false); } else { - startAngular(); + // startAngular(); } });