copay/public/views/includes/menu.html

31 lines
1.5 KiB
HTML
Raw Normal View History

<div class="bottom-bar second-bottom-bar row collapse animated slideInRight" ng-class="{ 'slideOutRight': !showPlugins }" ng-show="index.menu.length > 6">
<div class="medium-{{index.menuItemSize}} small-{{index.menuItemSize}} columns text-center bottombar-item" ng-repeat="item in index.menu | limitTo: 5 - index.menu.length">
<span ng-include="'views/includes/menu-item.html'"/>
</div>
<div class="medium-{{index.menuItemSize}} small-{{index.menuItemSize}} columns text-center bottombar-item" ng-repeat="n in index.menu | limitTo: 4 - index.menu.length % 6">
<a></a>
</div>
<menu-toggle ng-show="index.menu.length > 6"/>
</div>
<div class="bottom-bar row collapse" ng-show="!index.notAuthorized">
<div ng-class="{ 'medium-10 small-10 columns': index.menu.length == 5 }">
<div class="row collapse">
<div class="medium-{{index.menuItemSize}} small-{{index.menuItemSize}} columns text-center bottombar-item"
ng-repeat="item in index.menu | limitTo: (index.menu.length > 6 ? 5 : (index.menu.length == 5 ? 4 : index.menu.length))">
<span ng-include="'views/includes/menu-item.html'"/>
</div>
<menu-toggle ng-show="index.menu.length > 6"/>
2015-03-06 07:00:10 -08:00
</div>
2015-04-24 07:47:35 -07:00
</div>
<div class="medium-2 small-2 columns text-center bottombar-item" ng-show="index.menu.length == 5">
<span ng-include="'views/includes/menu-item.html'" ng-init="item = index.menu[4]"/>
</div>
2015-03-06 07:00:10 -08:00
</div>