Skip to content
This repository has been archived by the owner on Jun 19, 2018. It is now read-only.

Commit

Permalink
fix(monthView): hide badge cell total on days not in the current month
Browse files Browse the repository at this point in the history
Closes #545
  • Loading branch information
Matt Lewis committed Mar 4, 2017
1 parent 1b2084f commit ed34832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/calendarMonthCell.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<small
class="cal-events-num badge badge-important pull-left"
ng-show="day.badgeTotal > 0"
ng-show="day.badgeTotal > 0 && (vm.calendarConfig.displayAllMonthEvents || day.inMonth)"
ng-bind="day.badgeTotal">
</small>

Expand Down

0 comments on commit ed34832

Please sign in to comment.