Files
edx-platform/cms/templates/widgets/segment-io-footer.html
2016-03-25 16:50:28 -04:00

37 lines
1.3 KiB
HTML

<%page expression_filter="h"/>
<%! from openedx.core.djangolib.js_utils import js_escaped_string %>
% if settings.CMS_SEGMENT_KEY:
<!-- begin segment footer -->
<script type="text/javascript">
% if user.is_authenticated():
// We can't use JQuery's on load method because it
// screws up RequireJS' JQuery initialization.
var onLoadCallback = function() {
analytics.identify(
"${ user.id | n, js_escaped_string }",
{
email: "${ user.email | n, js_escaped_string }",
username: "${ user.username | n, js_escaped_string }"
},
{
integrations: {
// Disable MailChimp because we don't want to update the user's email
// and username in MailChimp on every page load. We only need to capture
// this data on registration/activation.
MailChimp: false
}
}
);
};
if (window.addEventListener) {
window.addEventListener("load", onLoadCallback, false);
}
else {
onLoadCallback();
}
% endif
</script>
<!-- end segment footer -->
% endif