summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--client/components/cards/cardDate.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/cards/cardDate.js b/client/components/cards/cardDate.js
index f7cd502f..4d129e8e 100644
--- a/client/components/cards/cardDate.js
+++ b/client/components/cards/cardDate.js
@@ -136,7 +136,7 @@ const CardDate = BlazeComponent.extendComponent({
const self = this;
self.date = ReactiveVar();
self.now = ReactiveVar(moment());
- Meteor.setInterval(() => {
+ window.setInterval(() => {
self.now.set(moment());
}, 60000);
},