(function (global) { @include('widgets.embed.partials.xd') var _id = 'recoma-invite-widget'; var el = document.createElement('iframe'); el.id = _id; el.style.position = 'fixed' el.style.bottom = '10px'; el.style.right = '10px'; el.style.width = '120px'; el.style.height = '90px'; el.style.border = 'none'; el.style.zIndex = 2000; el.scrolling = 'no'; el.frameborder = 'no'; el.src = '{{ route('embed-invite', ['alias' => $seller->alias]) }}#' + encodeURIComponent(document.location.href); document.body.appendChild(el); XD.receiveMessage(function(msg) { if (msg.data && msg.data.target == _id && document.getElementById(_id)) { document.getElementById(_id).style.height = msg.data.height; document.getElementById(_id).style.width = msg.data.width; } }, '{{ Request::secure() ? 'https://' : 'http://' }}' + '{{ Request::getHost() }}'); })(this)