Skip to content

Commit

Permalink
Fix bookmarking
Browse files Browse the repository at this point in the history
  • Loading branch information
pichalite committed Jun 13, 2017
1 parent bde15e5 commit ef0c78c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/partials/topic/post-menu-list.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<!-- IF !posts.deleted -->
<!-- IF config.loggedIn -->
<li>
<a component="post/favourite" href="#" data-favourited="{posts.favourited}">[[topic:favourite]]
<span component="post/favourite-count" class="favouriteCount" data-favourites="{posts.reputation}">{posts.reputation}</span>&nbsp;
<i component="post/favourite/on" class="fa fa-heart <!-- IF !posts.favourited -->hidden<!-- ENDIF !posts.favourited -->"></i>
<i component="post/favourite/off" class="fa fa-heart-o <!-- IF posts.favourited -->hidden<!-- ENDIF posts.favourited -->"></i>
<a component="post/bookmark" href="#" data-bookmarked="{posts.bookmarked}">[[topic:bookmark]]
<span component="post/bookmark-count" class="bookmarkCount" data-bookmarks="{posts.bookmarks}">{posts.bookmarks}</span>&nbsp;
<i component="post/bookmark/on" class="fa fa-heart <!-- IF !posts.bookmarked -->hidden<!-- ENDIF !posts.bookmarked -->"></i>
<i component="post/bookmark/off" class="fa fa-heart-o <!-- IF posts.bookmarked -->hidden<!-- ENDIF posts.bookmarked -->"></i>
</a>
</li>
<!-- ENDIF config.loggedIn -->
Expand Down

0 comments on commit ef0c78c

Please sign in to comment.