Skip to content

Commit

Permalink
Fixed bookmark tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
annatangzhao committed Sep 20, 2016
1 parent 1e84023 commit b481961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/home/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<div class="resource_item" ng-repeat="post in posts | orderBy: sortType:sortReverse | filter: languageFilter | filter:topicFilter | filter:search" ng-show="{{ post.likes - post.dislikes > -3 }} && !post.minimized">
<i class="fa fa-minus-circle" aria-hidden="true" ng-click="post.minimized = true"></i>
<i class="fa fa-trash-o" aria-hidden="true" ng-click="deletePost(post)" ng-show="user.id === post.id_users"></i>
<i class="fa fa-bookmark-o" aria-hidden="true" ng-click="addBookmark(post.id); post.saved = true" ng-show="!post.saved"></i>
<i class="fa fa-bookmark-o" aria-hidden="true" ng-click="post.saved = true" ng-show="!post.saved"></i>
<i class="fa fa-bookmark" aria-hidden="true" ng-show="post.saved"></i>
<a ng-href={{post.link}} target="_blank"> <!-- clicking on anything besides like or dislikes will lead you to the page -->

Expand Down

0 comments on commit b481961

Please sign in to comment.