(function() {
function openReservista() {
// создаём кнопку
var btn = document.createElement("button");
btn.type = "button";
btn.className = "reservista-button";
btn.style.display = "none";
// переносим data-атрибуты
btn.setAttribute("data-restaurant-id", "58");
btn.setAttribute("data-reservista-date", "");
btn.setAttribute("data-reservista-guests", "1");
btn.setAttribute("data-user-name", "");
btn.setAttribute("data-user-phone", "");
btn.setAttribute("data-additional-info", "");
btn.setAttribute("data-tag", "plushkin.rest");
document.body.appendChild(btn);
// ждём загрузки скрипта
var interval = setInterval(function() {
if (window.Reservista || document.querySelector('.reservista-button')) {
btn.click();
clearInterval(interval);
}
}, 200);
}
openReservista();
})();