commit
7b20301f0c
3 changed files with 3 additions and 3 deletions
|
|
@ -155,7 +155,7 @@ angular.module('copayApp.controllers').controller('MoreController',
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.sendWalletBackup = function() {
|
$scope.sendWalletBackup = function() {
|
||||||
if (!isMobile.iOS) {
|
if (isMobile.Android() || isMobile.Windows()) {
|
||||||
window.ignoreMobilePause = true;
|
window.ignoreMobilePause = true;
|
||||||
}
|
}
|
||||||
window.plugins.toast.showShortCenter('Preparing backup...');
|
window.plugins.toast.showShortCenter('Preparing backup...');
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ angular.module('copayApp.controllers').controller('ProfileController', function(
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.sendProfileBackup = function() {
|
$scope.sendProfileBackup = function() {
|
||||||
if (!isMobile.iOS) {
|
if (isMobile.Android() || isMobile.Windows()) {
|
||||||
window.ignoreMobilePause = true;
|
window.ignoreMobilePause = true;
|
||||||
}
|
}
|
||||||
window.plugins.toast.showShortCenter('Preparing backup...');
|
window.plugins.toast.showShortCenter('Preparing backup...');
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ angular.module('copayApp.controllers').controller('ReceiveController',
|
||||||
|
|
||||||
$scope.shareAddress = function(addr) {
|
$scope.shareAddress = function(addr) {
|
||||||
if (isCordova) {
|
if (isCordova) {
|
||||||
if (!isMobile.iOS) {
|
if (isMobile.Android() || isMobile.Windows()) {
|
||||||
window.ignoreMobilePause = true;
|
window.ignoreMobilePause = true;
|
||||||
}
|
}
|
||||||
window.plugins.socialsharing.share('My bitcoin address: ' + addr, null, null, null);
|
window.plugins.socialsharing.share('My bitcoin address: ' + addr, null, null, null);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue