fix import + walletHome + copayers
This commit is contained in:
parent
fa04610a10
commit
06c80ceaae
5 changed files with 16 additions and 21 deletions
|
|
@ -4,6 +4,8 @@ angular.module('copayApp.controllers').controller('copayersController',
|
|||
function($scope, $rootScope, $timeout, $log, $modal, profileService, go, notification, platformInfo, gettext, gettextCatalog, animationService) {
|
||||
var self = this;
|
||||
var isCordova = platformInfo.isCordova;
|
||||
var isWP = platformInfo.isWP;
|
||||
var isAndroid = platformInfo.isAndroid;
|
||||
|
||||
var delete_msg = gettextCatalog.getString('Are you sure you want to delete this wallet?');
|
||||
var accept_msg = gettextCatalog.getString('Accept');
|
||||
|
|
@ -104,7 +106,7 @@ angular.module('copayApp.controllers').controller('copayersController',
|
|||
|
||||
self.shareSecret = function(secret) {
|
||||
if (isCordova) {
|
||||
if (isMobile.Android() || isMobile.Windows()) {
|
||||
if (isAndroid || isWP) {
|
||||
window.ignoreMobilePause = true;
|
||||
}
|
||||
var message = gettextCatalog.getString('Join my Copay wallet. Here is the invitation code: {{secret}} You can download Copay for your phone or desktop at https://copay.io', {secret: secret});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue