From 2af6e90e078fa275f0fd12c143e1f87e44b82dff Mon Sep 17 00:00:00 2001 From: Eli Schillinger <145599100+EliSchillinger@users.noreply.github.com> Date: Fri, 31 Oct 2025 15:54:00 -0700 Subject: [PATCH 1/2] 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 ff3c0bd5..e95ea9e6 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/opendendro/') { + if (event.origin === 'http://cyversegpt.cyverse.org/opendendro/') { if (event.data.type === 'link') { window.open(event.data.url, '_blank', 'noopener,noreferrer'); } From 2a1c6025330d95d173b29dbaa8e8c15307e2cadb Mon Sep 17 00:00:00 2001 From: Eli Schillinger <145599100+EliSchillinger@users.noreply.github.com> Date: Wed, 5 Nov 2025 13:54:11 -0700 Subject: [PATCH 2/2] Update chatbot_widget.js Fixed URL --- 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 e95ea9e6..093d3c1e 100644 --- a/docs/chatbot_widget.js +++ b/docs/chatbot_widget.js @@ -20,7 +20,7 @@ document.addEventListener('DOMContentLoaded', function () {