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:
Zara 2016-03-08 10:36:54 +00:00
parent 13bf67d958
commit 9386f8c42c

View File

@ -4,7 +4,7 @@
<span class="pull-right">
<span time-moment eventdate="event.created_at"></span>
&nbsp;
<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>