commit
74608300d1
|
@ -1686,11 +1686,11 @@ def reload_javascript():
|
||||||
if cmd_opts.theme is not None:
|
if cmd_opts.theme is not None:
|
||||||
inline += f"set_theme('{cmd_opts.theme}');"
|
inline += f"set_theme('{cmd_opts.theme}');"
|
||||||
|
|
||||||
head += f'<script type="text/javascript">{inline}</script>\n'
|
|
||||||
|
|
||||||
for script in modules.scripts.list_scripts("javascript", ".js"):
|
for script in modules.scripts.list_scripts("javascript", ".js"):
|
||||||
head += f'<script type="text/javascript" src="file={script.path}"></script>\n'
|
head += f'<script type="text/javascript" src="file={script.path}"></script>\n'
|
||||||
|
|
||||||
|
head += f'<script type="text/javascript">{inline}</script>\n'
|
||||||
|
|
||||||
def template_response(*args, **kwargs):
|
def template_response(*args, **kwargs):
|
||||||
res = shared.GradioTemplateResponseOriginal(*args, **kwargs)
|
res = shared.GradioTemplateResponseOriginal(*args, **kwargs)
|
||||||
res.body = res.body.replace(b'</head>', f'{head}</head>'.encode("utf8"))
|
res.body = res.body.replace(b'</head>', f'{head}</head>'.encode("utf8"))
|
||||||
|
|
Loading…
Reference in New Issue