[fix] loading of external resources in JS client toolkit

dependabot/pip/master/sphinx-6.1.3
mrpaulblack 2 years ago
parent e869cbed5b
commit 33c0a9e410

@ -101,7 +101,7 @@ window.searxng = (function (w, d) {
};
searxng.loadStyle = function (src) {
var path = searxng.settings.theme_static_path + src,
var path = searxng.settings.theme_static_path + "/" + src,
id = "style_" + src.replace('.', '_'),
s = d.getElementById(id);
if (s === null) {
@ -115,7 +115,7 @@ window.searxng = (function (w, d) {
};
searxng.loadScript = function (src, callback) {
var path = searxng.settings.theme_static_path + src,
var path = searxng.settings.theme_static_path + "/" + src,
id = "script_" + src.replace('.', '_'),
s = d.getElementById(id);
if (s === null) {

Loading…
Cancel
Save