diff --git a/js/controllers/more.js b/js/controllers/more.js index 499bb6e5d..ec3b81c3c 100644 --- a/js/controllers/more.js +++ b/js/controllers/more.js @@ -155,7 +155,7 @@ angular.module('copayApp.controllers').controller('MoreController', }; $scope.sendWalletBackup = function() { - if (!isMobile.iOS) { + if (isMobile.Android() || isMobile.Windows()) { window.ignoreMobilePause = true; } window.plugins.toast.showShortCenter('Preparing backup...'); diff --git a/js/controllers/profile.js b/js/controllers/profile.js index 7bdc2525b..ff5708c8e 100644 --- a/js/controllers/profile.js +++ b/js/controllers/profile.js @@ -25,7 +25,7 @@ angular.module('copayApp.controllers').controller('ProfileController', function( }; $scope.sendProfileBackup = function() { - if (!isMobile.iOS) { + if (isMobile.Android() || isMobile.Windows()) { window.ignoreMobilePause = true; } window.plugins.toast.showShortCenter('Preparing backup...'); diff --git a/js/controllers/receive.js b/js/controllers/receive.js index 7be9d5b75..04e0a0da7 100644 --- a/js/controllers/receive.js +++ b/js/controllers/receive.js @@ -19,7 +19,7 @@ angular.module('copayApp.controllers').controller('ReceiveController', $scope.shareAddress = function(addr) { if (isCordova) { - if (!isMobile.iOS) { + if (isMobile.Android() || isMobile.Windows()) { window.ignoreMobilePause = true; } window.plugins.socialsharing.share('My bitcoin address: ' + addr, null, null, null);