copay/js/services/uriHandler.js

12 lines
247 B
JavaScript
Raw Normal View History

2014-06-30 14:41:17 -07:00
'use strict';
var UriHandler = function() {};
UriHandler.prototype.register = function() {
navigator.registerProtocolHandler('bitcoin',
'uri=%s',
'Copay');
};
angular.module('copayApp.services').value('uriHandler', new UriHandler());