diff --git a/cordova/config.xml b/cordova/config.xml
index 9805aadb6..f0b1ea38b 100644
--- a/cordova/config.xml
+++ b/cordova/config.xml
@@ -7,7 +7,7 @@
A secure bitcoin wallet for friends and companies.
-
+
BitPay Inc.
diff --git a/cordova/ios/icons/icon-300.png b/cordova/ios/icons/icon-300.png
new file mode 100644
index 000000000..f9b681b5d
Binary files /dev/null and b/cordova/ios/icons/icon-300.png differ
diff --git a/js/controllers/send.js b/js/controllers/send.js
index 05c4d6bfc..428e38536 100644
--- a/js/controllers/send.js
+++ b/js/controllers/send.js
@@ -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;