Commit 2cd73a425413f902e31ea40ec820b3e98c2ed5a8
1 parent
a3b134de
Exists in
master
and in
2 other branches
Fix hangouts
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
index.html
... | ... | @@ -593,10 +593,10 @@ |
593 | 593 | <script id="calendar-template" type="text/x-handlebars-template"> |
594 | 594 | <div class="calendar {{category_class}}"> |
595 | 595 | <div class="col-sm-12"> |
596 | - {{#if event.body}} | |
596 | + {{#compare event.setting.presenter event.title operator="!=="}} | |
597 | 597 | |
598 | 598 | <div class="row alert presenter-warning"> |
599 | - {{event.body}} | |
599 | + {{{event.body}}} | |
600 | 600 | </div> |
601 | 601 | |
602 | 602 | <div class="row calendar__disabled"> |
... | ... | @@ -618,7 +618,7 @@ |
618 | 618 | </div> |
619 | 619 | </div> |
620 | 620 | |
621 | - {{/if}} | |
621 | + {{^}} | |
622 | 622 | |
623 | 623 | <div class="row"> |
624 | 624 | <div class="calendar__column col-xs-12 col-sm-6"> | ... | ... |