Skip to content

Instantly share code, notes, and snippets.

@centrix
Created July 28, 2014 20:33
Show Gist options
  • Save centrix/b73ca7305f314525b340 to your computer and use it in GitHub Desktop.
Save centrix/b73ca7305f314525b340 to your computer and use it in GitHub Desktop.
<script>
var messageIntervalID = setInterval(function () { Intercom('update'); }, 30000);
Intercom('onHide', function() { messageIntervalID = setInterval(function () { Intercom('update'); }, 30000); });
Intercom('onShow', function() { if (typeof messageIntervalID !== 'undefined') { clearInterval(messageIntervalID);};};);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment