// 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: '653ac431294bcb410e754666', merchantName: 'Fadden Custom Pest Services', originUrl: origin_url, sentry: 'https://ec0b927b3ee742b1ac32f546edbe3cad@app.getsentry.com/20033', widgetSettings: {"hipaa_enabled":false,"auto_response":{"enabled":true},"locations":[{"id":"654a6a3e59333df124bca566","name":"Fadden Custom Pest Services LLC Auburn","phone_number":{"national_format":"(855) 719-0304","value":"+18557190304"},"call_phone_number":{"national_format":"(207) 576-9750","value":"+12075769750"},"enabled":true,"mobile":{"call_cta_enabled":false,"text":"How would you like to contact us?","title":"Contact Fadden Custom Pest Services LLC Auburn"}},{"id":"654a7fb959333df124bca8b5","name":"Fadden Custom Pest Services LLC Lebanon","phone_number":{"national_format":"(844) 608-8859","value":"+18446088859"},"call_phone_number":null,"enabled":true,"mobile":{"call_cta_enabled":false,"text":"How would you like to contact us?","title":"Contact Fadden Custom Pest Services LLC Lebanon"}}],"intro":{"enabled":true,"text":"Hi there! Send us a message if you want to know more about our service."},"message_form":{"name_optional":false,"title":"Message Us","text":"Send us a message and we will get back to you shortly by text message.","cta_text":"Send"},"mobile":{"call_cta_enabled":true,"title":"Contact Fadden Custom Pest Services","text":"How would you like to contact us?"},"style":{"primary_color":"#0c6cb6"},"chatbot":{"enabled":false,"auto_load":true,"name":"SparkAI","intro":{"enabled":false,"text":"Have a question? Ask our chatbot, SparkAI"}},"phone_number":{"national_format":"(765) 978-3807","value":"+17659783807"},"call_phone_number":{"national_format":"(207) 576-9750","value":"+12075769750"},"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 );