Wallet/js/services/uriHandler.js
Gustavo Maximiliano Cortez 4c2f3b5f5f Add URI handler for Firefox
2014-11-23 18:58:51 -03:00

14 lines
366 B
JavaScript

'use strict';
var UriHandler = function() {};
UriHandler.prototype.register = function() {
var base = window.location.origin + '/';
var url = base + '#!/uri-payment/%s';
if(navigator.registerProtocolHandler) {
navigator.registerProtocolHandler('bitcoin', url, 'Copay');
}
};
angular.module('copayApp.services').value('uriHandler', new UriHandler());