Disables alert() function for chromeapp
This commit is contained in:
parent
3e87998981
commit
1613062f48
1 changed files with 7 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
angular.module('copayApp.controllers').controller('indexController', function($rootScope, $scope, $log, $filter, $timeout, lodash, go, profileService, configService, isCordova, rateService, storageService, addressService, gettextCatalog, gettext, amMoment, nodeWebkit, addonManager, feeService) {
|
angular.module('copayApp.controllers').controller('indexController', function($rootScope, $scope, $log, $filter, $timeout, lodash, go, profileService, configService, isCordova, rateService, storageService, addressService, gettextCatalog, gettext, amMoment, nodeWebkit, addonManager, feeService, isChromeApp) {
|
||||||
var self = this;
|
var self = this;
|
||||||
self.isCordova = isCordova;
|
self.isCordova = isCordova;
|
||||||
self.onGoingProcess = {};
|
self.onGoingProcess = {};
|
||||||
|
|
@ -752,7 +752,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
'Wallet Server Error', ['OK']
|
'Wallet Server Error', ['OK']
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
alert(err);
|
if (!isChromeApp) {
|
||||||
|
alert(err);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -764,7 +766,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
'Device Error', ['OK']
|
'Device Error', ['OK']
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
alert(err);
|
if (!isChromeApp) {
|
||||||
|
alert(err);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue