Kahoot! Come impostare e gestire l'SSO

Aggiornato

0 commenti

Accedi per aggiungere un commento.

function startChat(field) { if (window.kindlyChat.open == false) { window.kindlyChat.openChat(); } setTimeout(function() { const message = document.getElementById(field); window.kindlyChat.sendMessage(message.value, {sender: "user"}); message.value = ''; }, 1000); } const chatBars = document.getElementsByClassName("chatbot-input"); for (let i = 0; i < chatBars.length; i++) { chatBars[i].addEventListener('keydown', function (event) { if (event.key === 'Enter') { startChat(chatBars[i].id); } }); }