Skip to content

Instantly share code, notes, and snippets.

@looneym
Created February 6, 2017 10:25
Show Gist options
  • Save looneym/2e99865c3d8651dbeadab724c2ea08fe to your computer and use it in GitHub Desktop.
Save looneym/2e99865c3d8651dbeadab724c2ea08fe to your computer and use it in GitHub Desktop.
Conditionally show the messenger based on page URL
URL = window.location.href;
if (URL.includes("terms")){
termsPage = true;
} else {
termsPage = false;
}
var intercomSettings = {
app_id: YOUR_APP_ID,
hide_default_launcher: termsPage
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment