Skip to content

Commit

Permalink
Remove cutoff of +1 hour
Browse files Browse the repository at this point in the history
  • Loading branch information
diurnalist committed Aug 27, 2017
1 parent fa0bda0 commit 5cbe532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/public/js/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
localShowtime.setHours(localShowtime.getUTCHours());

var cutoff = new Date();
cutoff.setHours(cutoff.getHours() + 1);
cutoff.setHours(cutoff.getHours());

if (localShowtime < cutoff) {
el.style.display = 'none';
Expand Down

0 comments on commit 5cbe532

Please sign in to comment.