commit
256d79046e
3 changed files with 4 additions and 3 deletions
|
|
@ -7,7 +7,7 @@
|
|||
<description>
|
||||
A secure bitcoin wallet for friends and companies.
|
||||
</description>
|
||||
<author email="support@bitpay.com" href="http://copay.io">
|
||||
<author email="support@bitpay.com" href="https://copay.io">
|
||||
BitPay Inc.
|
||||
</author>
|
||||
<content src="index.html" />
|
||||
|
|
|
|||
BIN
cordova/ios/icons/icon-300.png
Normal file
BIN
cordova/ios/icons/icon-300.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
|
|
@ -14,7 +14,8 @@ angular.module('copayApp.controllers').controller('SendController',
|
|||
preconditions.checkState(w.settings.unitToSatoshi);
|
||||
|
||||
$scope.isShared = w.isShared();
|
||||
$rootScope.title = w.requiresMultipleSignatures() ? 'Send Proposal' : 'Send';
|
||||
$scope.requiresMultipleSignatures = w.requiresMultipleSignatures();
|
||||
$rootScope.title =$scope.requiresMultipleSignatures ? 'Send Proposal' : 'Send';
|
||||
$scope.loading = false;
|
||||
$scope.error = $scope.success = null;
|
||||
|
||||
|
|
@ -127,7 +128,7 @@ angular.module('copayApp.controllers').controller('SendController',
|
|||
if (msg.match('expired'))
|
||||
msg = 'The payment request has expired';
|
||||
|
||||
var message = 'The transaction' + (w.requiresMultipleSignatures() ? ' proposal' : '') +
|
||||
var message = 'The transaction' + ($scope.requiresMultipleSignatures ? ' proposal' : '') +
|
||||
' could not be created: ' + msg;
|
||||
|
||||
$scope.error = message;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue