// 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: '60f9d05750e55d5c6d5a476d', merchantName: '(CHURNED) Bay Street Clinic Of Electrolysis And Skincare', originUrl: origin_url, sentry: 'https://ec0b927b3ee742b1ac32f546edbe3cad@app.getsentry.com/20033', widgetSettings: {"hipaa_enabled":false,"intro":{"enabled":true,"text":"Hi there! Send us a message if you have any questions."},"message_form":{"name_optional":false,"text":"Send us a message and we will get back to you shortly by text.","title":"Message Us","cta_text":"Send"},"mobile":{"call_cta_enabled":true,"title":"Contact (CHURNED) Bay Street Clinic Of Electrolysis And Skincare","text":"How would you like to contact us?"},"style":{"primary_color":"#76CCC3"},"auto_response":{"enabled":true,"text":"Thanks for texting us. If your inquiries are directed towards our Bay Street staff, we will be sure to respond to you as soon as possible. If you would like to connect with a representative at our Sherbourne location please reply \"Sherbourne\""},"default_assignee":{"id":"61e5bc21b8847e01e00f37c1","ref":"employees"},"chatbot":{"enabled":false,"auto_load":true,"name":"SparkAI","intro":{"enabled":false,"text":"Have a question? Ask our chatbot, SparkAI"}},"locations":[],"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 );