From 164d0c198a1b9b9eb0522d6df89c9f85b6328fb3 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Mon, 7 Jul 2014 16:57:57 -0300 Subject: [PATCH] workaround bug of urihandler in firefox --- js/services/uriHandler.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/services/uriHandler.js b/js/services/uriHandler.js index ef50e1b5a..969ff1c0e 100644 --- a/js/services/uriHandler.js +++ b/js/services/uriHandler.js @@ -5,8 +5,7 @@ var UriHandler = function() {}; UriHandler.prototype.register = function() { var base = window.location.origin + '/'; var url = base + '#/uri_payment/%s'; - navigator.registerProtocolHandler('bitcoin', - url, 'Copay'); + // navigator.registerProtocolHandler('bitcoin', url, 'Copay'); }; angular.module('copayApp.services').value('uriHandler', new UriHandler());