Created
October 7, 2019 17:56
-
-
Save vanessaramirez/bdd11aaf8d8aa910c400fa03c074768c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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