little refactors
This commit is contained in:
parent
c474cca890
commit
879f16d521
3 changed files with 5 additions and 30 deletions
|
|
@ -58,9 +58,8 @@ angular.module('copayApp.controllers').controller('buyAmazonController',
|
|||
self.error = null;
|
||||
self.errorInfo = null;
|
||||
|
||||
var currency_code = configService.getSync().amazon.testnet ? window.amazon_sandbox_currency_code : window.amazon_currency_code;
|
||||
var dataSrc = {
|
||||
currency: currency_code,
|
||||
currency: 'USD',
|
||||
amount: $scope.fiat,
|
||||
uuid: self.selectedWalletId
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('indexController', function($rootScope, $scope, $log, $filter, $timeout, $ionicScrollDelegate, $ionicPopup, $ionicSideMenuDelegate, $httpBackend, latestReleaseService, feeService, bwcService, pushNotificationsService, lodash, go, profileService, configService, rateService, storageService, addressService, gettext, gettextCatalog, amMoment, addonManager, bwcError, txFormatService, uxLanguage, glideraService, coinbaseService, amazonService, platformInfo, addressbookService, openURLService, ongoingProcess) {
|
||||
angular.module('copayApp.controllers').controller('indexController', function($rootScope, $scope, $log, $filter, $timeout, $ionicScrollDelegate, $ionicPopup, $ionicSideMenuDelegate, $httpBackend, latestReleaseService, feeService, bwcService, pushNotificationsService, lodash, go, profileService, configService, rateService, storageService, addressService, gettext, gettextCatalog, amMoment, addonManager, bwcError, txFormatService, uxLanguage, glideraService, coinbaseService, platformInfo, addressbookService, openURLService, ongoingProcess) {
|
||||
|
||||
var self = this;
|
||||
var SOFT_CONFIRMATION_LIMIT = 12;
|
||||
|
|
@ -161,7 +161,6 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
|||
|
||||
self.initGlidera();
|
||||
self.initCoinbase();
|
||||
self.initAmazon();
|
||||
|
||||
self.hideBalance();
|
||||
|
||||
|
|
@ -1391,15 +1390,6 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
|||
});
|
||||
};
|
||||
|
||||
|
||||
self.initAmazon = function() {
|
||||
self.amazonEnabled = configService.getSync().amazon.enabled;
|
||||
self.amazonTestnet = configService.getSync().amazon.testnet;
|
||||
var network = self.amazonTestnet ? 'testnet' : 'livenet';
|
||||
if (!self.amazonEnabled) return;
|
||||
amazonService.setCredentials(network);
|
||||
};
|
||||
|
||||
self.isInFocus = function(walletId) {
|
||||
var fc = profileService.focusedClient;
|
||||
return fc && fc.credentials.walletId == walletId;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue