mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
Fix issue with head
param when adding more than one script tag (#6639)
* fix * Revert "fix" This reverts commit 86783c834ddfdff4eb34f1d55ded29f162493389. * fix * add changeset * fix * add external js file functionality * format --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
parent
28a7aa917f
commit
9a6ff704cd
6
.changeset/hip-needles-mate.md
Normal file
6
.changeset/hip-needles-mate.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/app": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:Fix issue with `head` param when adding more than one script tag
|
@ -150,12 +150,21 @@
|
||||
async function add_custom_html_head(
|
||||
head_string: string | null
|
||||
): Promise<void> {
|
||||
const parser = new DOMParser();
|
||||
if (head_string) {
|
||||
const head_html = parser.parseFromString(head_string, "text/html").head
|
||||
.firstChild;
|
||||
if (head_html) {
|
||||
document.head.append(head_html);
|
||||
const parser = new DOMParser();
|
||||
const parsed_head_html = Array.from(
|
||||
parser.parseFromString(head_string, "text/html").head.children
|
||||
);
|
||||
|
||||
if (parsed_head_html) {
|
||||
for (let head_element of parsed_head_html) {
|
||||
let newScriptTag = document.createElement("script");
|
||||
Array.from(head_element.attributes).forEach((attr) => {
|
||||
newScriptTag.setAttribute(attr.name, attr.value);
|
||||
});
|
||||
newScriptTag.textContent = head_element.textContent;
|
||||
document.head.appendChild(newScriptTag);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user