Make JavaScript work with LibreJS (#1213)
This commit is contained in:
@ -1,13 +1,8 @@
|
||||
// Tooltips
|
||||
$(function () {
|
||||
$("[data-toggle='tooltip']").tooltip();
|
||||
$(function() {
|
||||
$("[data-toggle='tooltip']").tooltip();
|
||||
});
|
||||
|
||||
|
||||
//
|
||||
// Navbar dropdowns
|
||||
//
|
||||
|
||||
const navSections = document.querySelectorAll(".nav-details");
|
||||
|
||||
navSections.forEach(navSection => {
|
||||
@ -31,3 +26,22 @@ function navSectionsClose(event) {
|
||||
navSection.open = !open;
|
||||
});
|
||||
}
|
||||
|
||||
// Matomo
|
||||
var _paq = window._paq || [];
|
||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||
_paq.push(["trackPageView"]);
|
||||
_paq.push(["enableLinkTracking"]);
|
||||
(function() {
|
||||
var u = "https://stats.privacytools.io/";
|
||||
_paq.push(["setTrackerUrl", u + "matomo.php"]);
|
||||
_paq.push(["setSiteId", "1"]);
|
||||
var d = document,
|
||||
g = d.createElement("script"),
|
||||
s = d.getElementsByTagName("script")[0];
|
||||
g.type = "text/javascript";
|
||||
g.async = true;
|
||||
g.defer = true;
|
||||
g.src = u + "matomo.js";
|
||||
s.parentNode.insertBefore(g, s);
|
||||
})();
|
||||
|
Reference in New Issue
Block a user