// 1. Create the container var qc_container = document.createElement( 'div' ); qc_container.id = 'qc-container'; document.body.appendChild( qc_container ); var widget_script = ''; var origin_url = window.document.location.origin; // 2. Create a iframe to load the react App var qc_iframe = document.createElement( 'iframe' ); qc_iframe.id = 'qc-frame'; // position: fixed; remove a white space which was added at the bottom of the page qc_iframe.style.position = 'fixed'; // Cannot use display: none; otherwise the autogrow textarea will not work qc_iframe.style.visibility = 'hidden'; document.body.appendChild( qc_iframe ); qc_iframe.contentWindow.document.write( '' + widget_script + '' ); qc_iframe.contentWindow.document.close(); qc_iframe.contentWindow.context = { baseUrl: 'https://onelocal.com', environment: 'production', merchantId: '6578de83bc7915863d090877', merchantName: 'Yaletown/Mainland Wholistic Wellness Parent', originUrl: origin_url, sentry: 'https://ec0b927b3ee742b1ac32f546edbe3cad@app.getsentry.com/20033', widgetSettings: {"hipaa_enabled":false,"chatbot":{"auto_load":true,"enabled":false,"name":"SparkAI","intro":{"enabled":false,"text":"Have a question? Ask our chatbot, SparkAI"}},"intro":{"enabled":false,"text":"--Do you have any questions? \nSend us a message"},"message_form":{"name_optional":false,"text":"Need a quick answer? Message us and a real human will text you back.","title":"Message us and we'll text you","cta_text":"Send"},"mobile":{"call_cta_enabled":true,"title":"Contact Yaletown Wellness","text":"How would you like to contact us?"},"style":{"primary_color":"#265532"},"auto_response":{"enabled":true},"locations":[{"id":"5e4d83f3398c7c36a8074b11","name":"Yaletown Wellness - Hamilton","phone_number":{"national_format":"(604) 229-4820","value":"+16042294820"},"call_phone_number":{"national_format":"(604) 633-0998","value":"+16046330998"},"enabled":true,"mobile":{"call_cta_enabled":false,"text":"How would you like to contact us?","title":"Contact Yaletown Wellness - Hamilton"}},{"id":"6578de39bc7915863d090863","name":"Yaletown Wellness - Mainland","phone_number":{"national_format":"(778) 655-8687","value":"+17786558687"},"call_phone_number":null,"enabled":true,"mobile":{"call_cta_enabled":false,"text":"How would you like to contact us?","title":"Contact Yaletown Wellness - Mainland"}}],"phone_number":{"national_format":"(778) 760-1655","value":"+17787601655"},"location_selection":{"title":"Location Selection","text":"Select the location which you would like to contact","skip_text":"Skip","is_optional":false},"confirmation":{"title":"Thanks for your message","text":"We will follow up with you shortly by text message."}} }; window.addEventListener( "message", ( event ) => { if( event.origin.indexOf( origin_url ) === -1 || ! event.data?.event_name ) { return; } if( typeof gtag !== "undefined" ) { gtag( "event", event.data.event_name, { name: event.data.event_name } ); } }, false );