Wallet/old/topbar.html

28 lines
1.2 KiB
HTML
Raw Normal View History

<nav ng-controller="topbarController as topbar"
2016-05-23 16:30:36 -03:00
class="tab-bar" ng-style="{'background-color': noColor ? '#4B6178' : index.backgroundColor}">
2015-03-06 12:00:10 -03:00
<section class="left-small">
<a id="hamburger" class="p10" ng-show="!goBackToState && !closeToHome && !index.noFocusedWallet && index.physicalScreenWidth < 768"
on-tap="index.toggleLeftMenu()"><i class="fi-list size-24"></i>
2015-03-06 12:00:10 -03:00
</a>
<a ng-show="goBackToState" ng-click="$root.go(goBackToState); goBackToState = null"><i class="icon-arrow-left3 icon-back"></i>
<span class="text-back" translate>Back</span>
2015-03-06 12:00:10 -03:00
</a>
2015-05-07 18:35:54 -03:00
<a ng-show="closeToHome" class="p10 "
ng-click="topbar.goHome(); index.setCompactTxHistory(); closeToHome = null">
<span class="text-close" translate>Close</span>
2015-04-23 18:29:25 -03:00
</a>
2015-03-06 12:00:10 -03:00
</section>
2015-12-14 16:13:53 -03:00
<section class="right-small" ng-show="showPreferences && !index.noFocusedWallet">
<a class="p10" ng-click="topbar.goPreferences(); index.setCompactTxHistory()">
2015-12-01 17:16:39 -03:00
<i class="fi-widget size-24"></i>
</a>
2015-05-07 18:35:54 -03:00
</section>
2015-03-06 12:00:10 -03:00
<section class="middle tab-bar-section">
2015-12-01 17:16:39 -03:00
<h1 class="title ellipsis">
2015-05-14 10:39:22 -03:00
{{(titleSection|translate) || (index.alias || index.walletName)}}
2015-03-06 12:00:10 -03:00
</h1>
</section>
</nav>