Disables alert() function for chromeapp

This commit is contained in:
Gustavo Maximiliano Cortez 2015-08-11 01:21:50 -03:00
parent 3e87998981
commit 1613062f48
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,6 @@
'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;
self.isCordova = isCordova;
self.onGoingProcess = {};
@ -752,7 +752,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r
'Wallet Server Error', ['OK']
);
} else {
alert(err);
if (!isChromeApp) {
alert(err);
}
}
};
@ -764,7 +766,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r
'Device Error', ['OK']
);
} else {
alert(err);
if (!isChromeApp) {
alert(err);
}
}
};