2014-06-30 18:41:17 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
var UriHandler = function() {};
|
|
|
|
|
|
|
|
|
|
UriHandler.prototype.register = function() {
|
2014-07-01 19:35:15 -03:00
|
|
|
var base = window.location.origin + '/';
|
|
|
|
|
var url = base + '#/uri_payment/%s';
|
2014-07-07 16:57:57 -03:00
|
|
|
// navigator.registerProtocolHandler('bitcoin', url, 'Copay');
|
2014-06-30 18:41:17 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
angular.module('copayApp.services').value('uriHandler', new UriHandler());
|