From e213878626f43582ea1c028104c0214e4e5f9781 Mon Sep 17 00:00:00 2001 From: Eli Schillinger <145599100+EliSchillinger@users.noreply.github.com> Date: Fri, 31 Oct 2025 15:55:11 -0700 Subject: [PATCH 1/3] Update chatbot_widget.js Switched iframe element over to new address --- docs/chatbot_widget.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/chatbot_widget.js b/docs/chatbot_widget.js index b20d1c4e..a18bfe50 100644 --- a/docs/chatbot_widget.js +++ b/docs/chatbot_widget.js @@ -32,7 +32,7 @@ document.addEventListener('DOMContentLoaded', function () { // Event listener for iframe messages (if the iframe sends any) window.addEventListener('message', function(event) { - if (event.origin === 'https://chat-qa.cyverse.org/foss/') { + if (event.origin === 'http://cyversegpt.cyverse.org/foss/') { if (event.data.type === 'link') { window.open(event.data.url, '_blank', 'noopener,noreferrer'); } @@ -123,4 +123,4 @@ document.addEventListener('DOMContentLoaded', function () { console.log('Note: Cross-origin restrictions prevent direct iframe manipulation'); } }; -}); \ No newline at end of file +}); From e7b5a3eed7b67532367394bb21f58691617f7ede Mon Sep 17 00:00:00 2001 From: Eli Schillinger <145599100+EliSchillinger@users.noreply.github.com> Date: Fri, 31 Oct 2025 15:57:34 -0700 Subject: [PATCH 2/3] Update chatbot_widget.js Switched iframe element over to new address --- docs/chatbot_widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/chatbot_widget.js b/docs/chatbot_widget.js index a18bfe50..37c18961 100644 --- a/docs/chatbot_widget.js +++ b/docs/chatbot_widget.js @@ -20,7 +20,7 @@ document.addEventListener('DOMContentLoaded', function () {