1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Feedback check interval to const

This commit is contained in:
Michael Shanks 2020-10-26 11:35:38 +00:00
parent a9de659216
commit 63234d1288

View file

@ -6,12 +6,14 @@
import FeedbackIframe from "./FeedbackIframe.svelte"
import analytics from "analytics"
const FIVE_MINUTES = 300000
let iconContainer
let popover
setInterval(() => {
$store.highlightFeedbackIcon = analytics.highlightFeedbackIcon()
}, 300000 /*check every 5 minutes*/)
}, FIVE_MINUTES)
</script>
<span