copay/public/views/includes/topbar.html

27 lines
1.1 KiB
HTML
Raw Normal View History

2015-04-26 23:51:41 -07:00
<nav ng-controller="topbarController as topbar" class="tab-bar">
2015-03-06 07:00:10 -08:00
<section class="left-small">
2015-05-07 15:02:38 -07:00
<a id="hamburger" class="p10" ng-show="!goBackToState && !closeToHome && !index.noFocusedWallet"
2015-04-30 13:57:05 -07:00
ng-click="index.openMenu()"><i class="fi-list size-24"></i>
2015-03-06 07:00:10 -08:00
</a>
2015-05-29 07:43:38 -07:00
<a ng-show="goBackToState"
2015-03-06 07:00:10 -08:00
ng-click="$root.go(goBackToState); goBackToState = null"><i class="icon-arrow-left3 icon-back"></i>
2015-04-22 14:41:30 -07:00
<span class="text-back">{{'Back'|translate}}</span>
2015-03-06 07:00:10 -08:00
</a>
2015-05-07 14:35:54 -07:00
<a ng-show="closeToHome" class="p10 "
ng-click="topbar.goHome(); closeToHome = null">
<span class="text-close">{{'Close'|translate}}</span>
2015-04-23 14:29:25 -07:00
</a>
2015-03-06 07:00:10 -08:00
</section>
2015-05-07 14:35:54 -07:00
<section class="right-small" ng-show="showCamera">
<qr-scanner ng-show="index.isComplete" on-scan="topbar.onQrCodeScanned(data)" before-scan="topbar.openSendScreen()" />
2015-05-07 14:35:54 -07:00
</section>
2015-03-06 07:00:10 -08:00
<section class="middle tab-bar-section">
2015-05-29 11:25:41 -07:00
<h1 class="title ellipsis" ng-style="{'color': noColor ? '#4A90E2' : index.backgroundColor}">
2015-05-14 06:39:22 -07:00
{{(titleSection|translate) || (index.alias || index.walletName)}}
2015-03-06 07:00:10 -08:00
</h1>
</section>
</nav>