Add a button to show all, when filtering new items.

This commit is contained in:
Paulo Reis 2016-12-07 14:57:54 +00:00
parent c716b86def
commit 58ab888f3f
2 changed files with 9 additions and 0 deletions

View file

@ -52,6 +52,13 @@ block content
ng-href="{{ announcement.url }}"
target="_blank"
) Read more
div.text-center(
ng-if="ui.newItems > 0 && ui.newItems < announcements.length"
)
a.btn.btn-default.btn-sm(
href
ng-click="showAll();"
) Show all
.row(ng-cloak)
span(ng-if="projects.length > 0")

View file

@ -24,4 +24,6 @@ define [
$scope.ui.newItems = 0
markAnnouncementsAsRead()
$scope.showAll = ->
$scope.ui.newItems = 0