div and px deleted

This commit is contained in:
Mariano Rodriguez 2014-11-14 14:00:23 -03:00
parent fb33210c94
commit ce55c0b562
1 changed files with 28 additions and 28 deletions

View File

@ -43,50 +43,50 @@
<div class="large-12 columns"> <div class="large-12 columns">
<h2>Manage wallets</h2> <h2>Manage wallets</h2>
<div>
<table> <table>
<thead> <thead>
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Type</th> <th>Type</th>
<th>Status</th> <th>Status</th>
<th>Balance</th> <th>Balance</th>
<th>Actions</th> <th>Actions</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr <tr
data-ng-repeat="item in wallets | orderBy:'name'" data-ng-repeat="item in wallets | orderBy:'name'"
ng-init="isReady = item.isReady(); ng-init="isReady = item.isReady();
networkName = item.getNetworkName()" networkName = item.getNetworkName()"
ng-class="{'deleting':loading==item.id}"> ng-class="{'deleting':loading==item.id}">
<td>{{item.name || item.id }}</td> <td>{{item.name || item.id }}</td>
<td width="120px">{{item.requiredCopayers}} of {{item.totalCopayers}} - {{networkName}}</td> <td>{{item.requiredCopayers}} of {{item.totalCopayers}} - {{networkName}}</td>
<td width="200px">{{isReady ? 'Complete' : 'Waiting for copayers...'}}</td> <td>{{isReady ? 'Complete' : 'Waiting for copayers...'}}</td>
<td width="200px"> <td>
<span ng-if="!isReady">-</span> <span ng-if="!isReady">-</span>
<span ng-if="isReady"> <span ng-if="isReady">
{{item.balanceInfo.totalBalance || 0 |noFractionNumber}} {{item.settings.unitName}} {{item.balanceInfo.totalBalance || 0 |noFractionNumber}} {{item.settings.unitName}}
</span> </span>
</td> </td>
<td width="70px" class="text-center"> <td class="text-center">
<div ng-show="loading != item.id"> <div ng-show="loading != item.id">
<a title="Download Backup" class="text-gray" ng-click="downloadWalletBackup(item)" <a title="Download Backup" class="text-gray" ng-click="downloadWalletBackup(item)"
ng-show="!isSafari"><i class="fi-download size-18 m10r"></i></a> ng-show="!isSafari"><i class="fi-download size-18 m10r"></i></a>
<a title="View Backup" ng-click="viewWalletBackup(item)" <a title="View Backup" ng-click="viewWalletBackup(item)"
ng-show="isSafari"><i class="fi-eye"></i></a> ng-show="isSafari"><i class="fi-eye"></i></a>
&nbsp; &nbsp; &nbsp; &nbsp;
<a title="Delete Wallet" ng-really-message="{{'Are you sure you want to delete the wallet'}} {{(item.name || item.id)}}" <a title="Delete Wallet" ng-really-message="{{'Are you sure you want to delete the wallet'}} {{(item.name || item.id)}}"
ng-really-click="deleteWallet(item)" ng-really-click="deleteWallet(item)"
ng-show="loading != item.id"><i class="fi-trash text-gray size-18"></i></a> ng-show="loading != item.id"><i class="fi-trash text-gray size-18"></i></a>
</div> </div>
<span ng-show="loading == item.id"><i class="fi-bitcoin-circle icon-rotate spinner"></i></span> <span ng-show="loading == item.id"><i class="fi-bitcoin-circle icon-rotate spinner"></i></span>
</td> </td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div>
</div> </div>
</div> </div>
</div> </div>