new commit
This commit is contained in:
34
sites/all/modules/matomo/matomo.js
Normal file
34
sites/all/modules/matomo/matomo.js
Normal file
@@ -0,0 +1,34 @@
|
||||
(function ($) {
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
// Attach mousedown, keyup, touchstart events to document only and catch
|
||||
// clicks on all elements.
|
||||
$(document.body).bind("mousedown keyup touchstart", function(event) {
|
||||
|
||||
// Catch the closest surrounding link of a clicked element.
|
||||
$(event.target).closest("a,area").each(function() {
|
||||
|
||||
if (Drupal.settings.matomo.trackMailto && $(this).is("a[href^='mailto:'],area[href^='mailto:']")) {
|
||||
// Mailto link clicked.
|
||||
_paq.push(["trackEvent", "Mails", "Click", this.href.substring(7)]);
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
// Colorbox: This event triggers when the transition has completed and the
|
||||
// newly loaded content has been revealed.
|
||||
if (Drupal.settings.matomo.trackColorbox) {
|
||||
$(document).bind("cbox_complete", function () {
|
||||
var href = $.colorbox.element().attr("href");
|
||||
if (href) {
|
||||
_paq.push(["setCustomUrl", href]);
|
||||
_paq.push(["trackPageView"]);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user