From 9b4e3db7258166284ea3ccb7cab578a12f984e44 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Sat, 3 Jan 2015 13:59:18 -0300 Subject: [PATCH] fix bootstrap --- js/init.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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(); } });