// 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: '5a16db258d5dcfb62f69d027', merchantName: 'Adam Beehler Plumbing Inc.', originUrl: origin_url, sentry: 'https://ec0b927b3ee742b1ac32f546edbe3cad@app.getsentry.com/20033', widgetSettings: {"hipaa_enabled":false,"call_phone_number":{"national_format":"(613) 577-1112","value":"+16135771112"},"confirmation":{"text":"We will follow up with you shortly by text message.","title":"Thanks for your message"},"intro":{"enabled":true,"text":"Hi there! If you have an inquiry we'd love to hear from you. Click here to send us a text message :)"},"message_form":{"cta_text":"Send Text Message","name_optional":false,"title":"Send Us A Text Message","text":"Send us a message and we will get back to you shortly by text message."},"mobile":{"call_cta_enabled":true,"title":"Contact Adam Beehler Plumbing Inc.","text":"How would you like to contact us?"},"auto_response":{"enabled":true,"text":"Thanks for your message... We'll get back to you shortly.\nIf this is an emergency, please call 613-577-1112\n\nIf you haven't already, please provide the following...\n- Full Name\n- Physical Address\n- Billing Address (if different)\n- Email address"},"style":{"primary_color":"#f9a11b"},"chatbot":{"enabled":false,"auto_load":true,"name":"SparkAI","intro":{"enabled":false,"text":"Have a question? Ask our chatbot, SparkAI"}},"phone_number":{"national_format":"(613) 706-4657","value":"+16137064657"},"locations":[],"location_selection":{"title":"Location Selection","text":"Select the location which you would like to contact","skip_text":"Skip"}} }; 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 );