Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Changing class name
Browse files Browse the repository at this point in the history
  • Loading branch information
reyraa committed May 30, 2017
1 parent b399550 commit 26956b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/transactions/transactions.pug
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ md-card.offline-hide
i.material-icons.in(ng-if='transaction.senderId !== $ctrl.account.get().address') call_received
i.material-icons.out(ng-if='transaction.type !== 0 || transaction.recipientId !== $ctrl.account.get().address') call_made
td(md-cell)
.amount(data-ng-if='transaction.type !== 0 || transaction.recipientId !== $ctrl.account.get().address',
.amount.negative(data-ng-if='transaction.type !== 0 || transaction.recipientId !== $ctrl.account.get().address',
data-ng-class='{"has-send-modal": transaction.amount > 0}',
data-show-send-modal, data-amount='transaction.amount', data-recipient-id='transaction.recipientId', class='negative')
data-show-send-modal, data-amount='transaction.amount', data-recipient-id='transaction.recipientId')
lsk.value(amount='transaction.amount')
md-tooltip(md-direction='top', md-delay='350', data-ng-if='transaction.amount > 0') Repeat the transaction
.amount(data-ng-if='transaction.senderId !== $ctrl.account.get().address', class='positive')
.amount.positive(data-ng-if='transaction.senderId !== $ctrl.account.get().address')
lsk.value(amount='transaction.amount')
.amount(ng-if='transaction.type === 0 && transaction.senderId === transaction.recipientId', class='neutral')
.amount.neutral(ng-if='transaction.type === 0 && transaction.senderId === transaction.recipientId')
lsk.value(amount='transaction.amount')
td(md-cell)
.fee
Expand Down

0 comments on commit 26956b7

Please sign in to comment.