2015-04-22 02:48:00 -03:00
|
|
|
<div
|
|
|
|
|
class="bottom-bar row collapse">
|
|
|
|
|
<div class="medium-3 small-3 columns text-center bottombar-item" ng-repeat="item in index.menu">
|
2015-04-23 17:45:32 -03:00
|
|
|
<a ng-click="index.setTab(item.link)" ng-class="{'active': index.tab == item.link}"
|
|
|
|
|
ng-style="{'border-top-color':index.tab==item.link ? index.backgroundColor : ''}">
|
2015-03-06 12:00:10 -03:00
|
|
|
<i class="size-36 {{item.icon}} db"></i>
|
|
|
|
|
<div class="size-10 tu">
|
|
|
|
|
{{item.title|translate}}
|
|
|
|
|
<span
|
|
|
|
|
class="label alert round"
|
|
|
|
|
ng-if="item.link=='walletHome' && index.pendingTxProposalsCountForUs > 0">{{index.pendingTxProposalsCountForUs}}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|