var PidjOpener = { Init: function () { // Place pidj button in DOM. When clicked, it will open chat in a new window. var html = '
'; document.body.insertAdjacentHTML("beforeend", html); // Fade in pidj button setTimeout(() => { var opener = document.getElementById('pidj-opener'); opener.style.opacity = 1; }, 250); }, Open: function () { var height = Math.min(665, window.screen.availHeight - 25); var width = 550; var top = (window.screen.availHeight / 2) - (height / 2); var left = (window.screen.availWidth / 2) - (width / 2); window.open('https://gopidj.com/chat/pc:177d7271-7275-5995-a46c-8d4b883b9682/web?g=gr:6d8724bb-c4cd-509d-9388-aba89d85bf45', '_pidj', `width=${width},height=${height},left=${left},top=${top},directories=no,titlebar=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no`); }, }; PidjOpener.Init();