mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2024-10-01 01:35:57 -04: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);
|
|
});
|