mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2024-10-01 01:35:57 -04:00
7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
document.querySelectorAll(".onclick-select").forEach(element => {
|
|
element.addEventListener("click", element.select);
|
|
});
|
|
$(function () {
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
})
|