Merge pull request #3683 from cmgustavo/bug/missing-var

Fix disclaimer error
This commit is contained in:
Matias Alejo Garcia 2015-12-16 01:50:28 -03:00
commit f01b3a0105
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
angular.module('copayApp.controllers').controller('disclaimerController',
function($scope, $timeout, $log, profileService, isCordova, storageService, applicationService, gettextCatalog, uxLanguage, go) {
self = this;
var self = this;
self.tries = 0;
var create = function(noWallet) {

View file

@ -1,6 +1,6 @@
angular.module('copayApp.controllers').controller('paperWalletController',
function($scope, $http, $timeout, $log, configService, profileService, go, addressService, txStatus, bitcore) {
self = this;
var self = this;
var fc = profileService.focusedClient;
var rawTx;