This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function insertBGWidget(elementId, code){ | |
const parentElement = document.getElementById(elementId); | |
if (!parentElement) { | |
console.error('Не могу установить виджет, не найдет елемент с id ' + elementId); | |
return | |
} | |
if(!code){ | |
console.error('Не могу установить виджет, не указан ключ'); | |
return | |
} |