Skip to content

Instantly share code, notes, and snippets.

@vanessaramirez
Created October 7, 2019 17:56
Show Gist options
  • Select an option

  • Save vanessaramirez/bdd11aaf8d8aa910c400fa03c074768c to your computer and use it in GitHub Desktop.

Select an option

Save vanessaramirez/bdd11aaf8d8aa910c400fa03c074768c to your computer and use it in GitHub Desktop.
(function() {
function inIframe() {
try {
return window.self !== window.top;
} catch (e) {
return true;
}
}
if (!inIframe()) {
var basicInfo = $('#zendesk-web-widget');
var tags = [];
tags.push('Silo-id:' + basicInfo.data('silo-id'));
if ($.cookie('destination') == 'Carnation') {
tags.push('canary');
}
window.zESettings = {
authenticate: { jwt: basicInfo.data('widget-jwt') },
webWidget: {
helpCenter: {
searchPlaceholder: {
'*': 'Search for a solution',
},
},
authenticate: {
chat: {
jwtFn: function(callback) {
callback(basicInfo.data('visitor-auth-jwt'));
},
},
},
chat: {
tags: tags,
},
},
};
window.zEmbed ||
(function() {
var queue = [];
window.zEmbed = function() {
queue.push(arguments);
};
window.zE = window.zE || window.zEmbed;
document.zendeskHost = basicInfo.data('zendesk-host');
document.zEQueue = queue;
})();
zE(function() {
zE.identify({
name: basicInfo.data('user-name'),
email: basicInfo.data('user-email'),
organization: basicInfo.data('organization-name'),
});
});
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment