open wallet working

This commit is contained in:
Matias Alejo Garcia 2014-04-15 15:25:55 -03:00
commit 341c9d8ffa
6 changed files with 54 additions and 12 deletions

View file

@ -66,12 +66,11 @@
<div class="row">
<div class="large-6 columns">
<h3>Open a Existing Wallet</h3>
<select class="form-control" >
<option ng-repeat="walletId in listWalletIds()" ng-model="sel" value="walletId">{{walletId}}</option>
<select class="form-control" ng-model="selectedWalletId" ng-options="walletId for walletId in listWalletIds()">
</select>
</div>
<div class="large-3 columns">
<button class="button primary expand round" type="button" ng-click="open(sel || $scope.sel)">Open</button>
<button class="button primary expand round" type="button" ng-click="open(selectedWalletId)">Open</button>
</div>
</div>
<hr>