Fix error for old browsers
This commit is contained in:
parent
5d3a74246a
commit
3247934953
3 changed files with 15 additions and 3 deletions
|
|
@ -124,7 +124,11 @@ angular.module('copayApp.services').factory('coinbaseService', function($http, $
|
|||
currency = 'BTC';
|
||||
}
|
||||
|
||||
return [amount, currency, amountUnitStr];
|
||||
return {
|
||||
amount: amount,
|
||||
currency: currency,
|
||||
amountUnitStr: amountUnitStr
|
||||
};
|
||||
};
|
||||
|
||||
root.getSignupUrl = function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue