if (!$("#menu").is(":visible")) {
body.addClass("menu-showed");
}
+ _paq.push(['trackEvent', 'html', 'menu-on']);
});
/* Hide menu */
if ($("#menu").is(":visible")) {
$("body").addClass("menu-hidden");
}
+ _paq.push(['trackEvent', 'html', 'menu-off']);
});
$("#menu a").each(function() {
var boxid = $(this).attr("data-box");
if (boxid) {
- $("#" + $(this).attr("data-box")).hide();
+ $("#" + boxid).hide();
$(this).click(function(e) {
e.preventDefault();
$("body").addClass("menu-showed");
$(this).addClass("active");
$("#box-underlay").show();
- $("#" + $(this).attr("data-box")).show();
+ $("#" + boxid).show();
}
});
+ _paq.push(['trackEvent', 'html', boxid]);
}
else if ($(this).hasClass('dropdown')) {
$(this).click(function(e) {
loaded_text($("#other-text-body"));
}
});
+ _paq.push(['trackEvent', 'html', 'other-text']);
});
$("#other-text").hide();
$("body").removeClass('with-other-text');
$("#other-text-body").html("");
+ _paq.push(['trackEvent', 'html', 'other-text-close']);
});
/* Release menu after clicking inside TOC. */
-$("#toc a").click(release_menu);
+ $("#toc a").click(function(){
+ release_menu();
+ _paq.push(['trackEvent', 'html', 'toc-item']);
+ });
if ($('#nota_red').length > 0) {