(function () {
$(document).click(function(event) {
if ($(event.target).closest(".wrapper").length) return;
$("#contacts.active").removeClass("active");
});
$("#tel-list-trigger").click(function() {
$('#contacts').toggleClass("active");
});
})();
getDataForm = async () => {
try {
const req = await fetch('');
const dataJson = await req.json();
} catch(err) {
throw err
}
}