Removes unused variable

This commit is contained in:
Gustavo Maximiliano Cortez 2016-06-16 21:49:35 -03:00
commit c719e0a041
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@
</div>
<ul class="no-bullet">
<li class="line-b" ng-repeat="w in wallets">
<a ng-click="selectWallet(w.id, w.name)" class="db oh">
<a ng-click="selectWallet(w.id)" class="db oh">
<div class="avatar-wallet"
ng-style="{'background-color':w.color}">
<i class="icon-wallet size-21"></i>

View file

@ -2,7 +2,7 @@
angular.module('copayApp.controllers').controller('walletsController', function($scope, bwsError, profileService) {
$scope.selectWallet = function(walletId, walletName) {
$scope.selectWallet = function(walletId) {
var client = profileService.getClient(walletId);
$scope.errorSelectedWallet = {};