Hide 'quote' button for non-logged-in users
Previously, the quote button appeared with a hover cursor, even for logged out users, but it wasn't actually interactive. This hides the button in those situations to avoid confusion. Change-Id: Ib88b0694b39a911136d25988c05b8617dea287b5
This commit is contained in:
parent
13bf67d958
commit
9386f8c42c
@ -4,7 +4,7 @@
|
||||
<span class="pull-right">
|
||||
<span time-moment eventdate="event.created_at"></span>
|
||||
|
||||
<button class="btn btn-default btn-xs" ng-click="quote(event)"
|
||||
<button class="btn btn-default btn-xs" ng-click="quote(event)" ng-show="isLoggedIn"
|
||||
title="Quote">
|
||||
<i class="fa fa-quote-left"></i>
|
||||
</button>
|
||||
|
Loading…
x
Reference in New Issue
Block a user