// WIX Section
// #html1 is WIX page Id, where to embed iframe code and using of the same pageId, need to post message object to iframe
import wixLocation from 'wix-location';
$w.onReady(() => {
let obj = {
'domainUrl': wixLocation.baseUrl,
'pageUrl': wixLocation.url,
'pageQuery': wixLocation.query
}
$w("#html1").postMessage(obj);
});