Removes unused variable
This commit is contained in:
parent
1f3f4834c6
commit
c719e0a041
2 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@
|
||||||
</div>
|
</div>
|
||||||
<ul class="no-bullet">
|
<ul class="no-bullet">
|
||||||
<li class="line-b" ng-repeat="w in wallets">
|
<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"
|
<div class="avatar-wallet"
|
||||||
ng-style="{'background-color':w.color}">
|
ng-style="{'background-color':w.color}">
|
||||||
<i class="icon-wallet size-21"></i>
|
<i class="icon-wallet size-21"></i>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
angular.module('copayApp.controllers').controller('walletsController', function($scope, bwsError, profileService) {
|
angular.module('copayApp.controllers').controller('walletsController', function($scope, bwsError, profileService) {
|
||||||
|
|
||||||
$scope.selectWallet = function(walletId, walletName) {
|
$scope.selectWallet = function(walletId) {
|
||||||
|
|
||||||
var client = profileService.getClient(walletId);
|
var client = profileService.getClient(walletId);
|
||||||
$scope.errorSelectedWallet = {};
|
$scope.errorSelectedWallet = {};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue