Fixes confirmation popup for send-all on devices

This commit is contained in:
Gustavo Maximiliano Cortez 2015-06-22 15:42:39 -03:00
parent 3417d2ed1a
commit 304e16337f
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 7 additions and 2 deletions

View File

@ -924,14 +924,19 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
};
this.sendAll = function(amount, feeStr) {
var self = this;
var msg = gettextCatalog.getString("{{fee}} will be discounted for bitcoin networking fees", {
fee: feeStr
});
if (isCordova) {
navigator.notification.confirm(
msg,
this._doSendAll(amount),
'OK', 'Cancel'
function(buttonIndex) {
if (buttonIndex == 1)
$timeout(function() {
self._doSendAll(amount);
}, 1);
}
);
} else {
if (confirm(msg))