Skip to content

Instantly share code, notes, and snippets.

@blaswan
Created August 14, 2017 10:12
Show Gist options
  • Save blaswan/e680f36196da40f8460ce0ffdababece to your computer and use it in GitHub Desktop.
Save blaswan/e680f36196da40f8460ce0ffdababece to your computer and use it in GitHub Desktop.
<!-- Start Channel Plugin -->
<script>
window.channelPluginSettings = {
"plugin_id": '${YOUR_PLUGIN_ID}'
};
(function() {
var node = document.createElement('div');
node.id = 'ch-plugin';
document.body.appendChild(node);
var async_load = function() {
setTimeout(function() {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//cdn.channel.io/plugin/ch-plugin-web.js';
s.charset = 'UTF-8';
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}, 1000);
};
if (window.attachEvent) {
window.attachEvent('onload', async_load);
} else {
window.addEventListener('load', async_load, false);
}
})();
</script>
<!-- End Channel Plugin -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment