From baa44b0dfd962d16815b7db0197dab4aee06b8c4 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Thu, 4 Dec 2014 11:13:21 -0300 Subject: [PATCH] rm commented code --- js/controllers/homeWallet.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/js/controllers/homeWallet.js b/js/controllers/homeWallet.js index d94fb3218..2c86559da 100644 --- a/js/controllers/homeWallet.js +++ b/js/controllers/homeWallet.js @@ -2,14 +2,6 @@ angular.module('copayApp.controllers').controller('HomeWalletController', function($scope, $rootScope) { $scope.init = function() { - $rootScope.title = 'Home'; - - // This is necesarry, since wallet can change in homeWallet, without running init() again. - // $rootScope.$watch('wallet', function() { - // if ($rootScope.wallet && $rootScope.wallet.isComplete()) { - // $scope.addr = _.last($rootScope.wallet.getReceiveAddresses()); - // } - // }); }; });