Commit 694afc266cba931b6afe13b079df4367ae38581c

Authored by Caio Almeida
1 parent b1881bbd

Hide filter icon if user is not logged in

Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
ConfJuvApp/www/html/_header.html
... ... @@ -3,5 +3,7 @@
3 3  
4 4 <span ng-show="loading" class="loader"><em>Carregando...</em></span>
5 5  
6   - <button menu-toggle="right" class="button button-icon icon ion-funnel" hide-when="large"></button>
  6 + <div ng-show="loggedIn">
  7 + <button menu-toggle="right" class="button button-icon icon ion-funnel" hide-when="large"></button>
  8 + </div>
7 9 </ion-header-bar>
... ...