Skip to content

Instantly share code, notes, and snippets.

@erik4github
Last active April 5, 2018 17:02
Show Gist options
  • Save erik4github/6860ec90f1d65de010cc52e70d59bea9 to your computer and use it in GitHub Desktop.
Save erik4github/6860ec90f1d65de010cc52e70d59bea9 to your computer and use it in GitHub Desktop.
Identify Wistia video play audience based on Drip email address
window._wq = window._wq || [];
window._wq.push({
id: "_all",
onReady: function(video) {
video.bind("play", function() {
_dcq.push([
"identify",
{
success: function(response) {
video.email(response.email);
}
}
]);
return video.unbind;
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment