Update index.html
Browse files- index.html +1 -1
index.html
CHANGED
|
@@ -81,7 +81,7 @@
|
|
| 81 |
"",
|
| 82 |
`${window.location.pathname}?${query}`
|
| 83 |
);
|
| 84 |
-
window.parent.postMessage({ queryString: "?" +
|
| 85 |
if (currInputText === "" || isCalculating) return;
|
| 86 |
populateOutputArea(textAreaEl.value);
|
| 87 |
calculateEmbeddings(textAreaEl.value);
|
|
|
|
| 81 |
"",
|
| 82 |
`${window.location.pathname}?${query}`
|
| 83 |
);
|
| 84 |
+
window.parent.postMessage({ queryString: "?" + query }, "*")
|
| 85 |
if (currInputText === "" || isCalculating) return;
|
| 86 |
populateOutputArea(textAreaEl.value);
|
| 87 |
calculateEmbeddings(textAreaEl.value);
|