Skip to content

Instantly share code, notes, and snippets.

@dzabrzenski
Created November 20, 2018 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dzabrzenski/c60f6d5bd7d640033795e89cc37b2674 to your computer and use it in GitHub Desktop.
Save dzabrzenski/c60f6d5bd7d640033795e89cc37b2674 to your computer and use it in GitHub Desktop.
var BE_API = window.BE_API || {};
// open chat widget after 45 seconds
BE_API.onLoad = function () {
var time = 45 * 1000; // 45 seconds
setTimeout(function() {
BE_API.openChat();
}, time);
};
// put your chat widget code here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment