// 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: '5a85f0da37920940541430a4', merchantName: 'Walker's Capital Group of Companies Ltd.', originUrl: origin_url, sentry: 'https://ec0b927b3ee742b1ac32f546edbe3cad@app.getsentry.com/20033', widgetSettings: {"hipaa_enabled":false,"intro":{"enabled":true,"text":"Hi there! Let us know if you have any questions."},"message_form":{"name_optional":false,"text":"Leave us a note and we'll get back to you by via text message shortly.","title":"Get in Touch","cta_text":"Send"},"mobile":{"call_cta_enabled":true,"title":"Contact Walker's Capital Group of Companies Ltd.","text":"How would you like to contact us?"},"style":{"primary_color":"#3b67b9"},"chatbot":{"enabled":false,"auto_load":true,"name":"SparkAI","intro":{"enabled":false,"text":"Have a question? Ask our chatbot, SparkAI"}},"locations":[{"id":"5a86eabf717419003976e59d","name":"Capital Movers and Storage (Kingston)","phone_number":{"national_format":"(613) 704-2783","value":"+16137042783"},"call_phone_number":{"national_format":"(613) 544-9574","value":"+16135449574"},"enabled":true,"mobile":{"call_cta_enabled":false,"text":"How would you like to contact us?","title":"Contact Capital Movers and Storage (Kingston)"}},{"id":"5a86ec12717419003976e5ee","name":"Capital Movers & Storage (Trenton)","phone_number":{"national_format":"(249) 503-0532","value":"+12495030532"},"call_phone_number":null,"enabled":true,"mobile":{"call_cta_enabled":false,"text":"How would you like to contact us?","title":"Contact Capital Movers & Storage (Trenton)"}},{"id":"5acd07820b40760047e366b8","name":"Walker's Van & Storage","phone_number":{"national_format":"(705) 995-1109","value":"+17059951109"},"call_phone_number":{"national_format":"(705) 476-4223","value":"+17054764223"},"enabled":true,"mobile":{"call_cta_enabled":false,"text":"How would you like to contact us?","title":"Contact Walker's Van & Storage"}}],"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 );