This commit is contained in:
Matias Alejo Garcia 2016-08-19 14:01:50 -03:00
commit 7f3364c5d6
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
29 changed files with 182 additions and 199 deletions

View file

@ -1,9 +1,10 @@
'use strict';
angular.module('copayApp.controllers').controller('preferencesHistory',
function($scope, $log, $timeout, storageService, $state, profileService, lodash) {
var fc = profileService.focusedClient;
var c = fc.credentials;
function($scope, $log, $stateParams, $timeout, storageService, $state, profileService, lodash) {
var wallet = profileService.getWallet($stateParams.walletId);
var c = wallet.credentials;
$scope.csvReady = false;
$scope.csvHistory = function(cb) {