From b79caed7fcd5c601c23608e12365854cff69ec2b Mon Sep 17 00:00:00 2001 From: Mario Colque Date: Thu, 1 May 2014 18:39:12 -0300 Subject: [PATCH] added backup via email --- js/controllers/backup.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/controllers/backup.js b/js/controllers/backup.js index 03c67f2bf..5ea246b3a 100644 --- a/js/controllers/backup.js +++ b/js/controllers/backup.js @@ -40,11 +40,10 @@ angular.module('copay.backup').controller('BackupController', } else { if (email && email !== '') { var body = _getEncryptedWallet(); - console.log(body); var subject = 'Copay Backup'; var href = 'mailto:' + email + '?' + 'subject=' + subject + '&' - + 'body=' + 'body'; // TODO: Uncomment this when get the real encrypted wallet. + + 'body=' + body; var newWin = $window.open(href, '_blank', 'scrollbars=yes,resizable=yes,width=10,height=10');