mirror of
https://github.com/privacyguides/privacyguides.org
synced 2024-12-01 07:23:30 +01:00
7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
$(function() {
|
|
$("[data-toggle='tooltip']").tooltip();
|
|
});
|
|
document.querySelectorAll(".onclick-select").forEach(element => {
|
|
element.addEventListener("click", element.select);
|
|
});
|