mirror of
https://github.com/searxng/searxng
synced 2024-11-03 09:40:20 +00:00
Merge pull request #1194 from mrpaulblack/fix-leaflet-src
[fix] loading of external resources in JS client toolkit
This commit is contained in:
commit
035a4eaa09
BIN
searx/static/themes/simple/js/searxng.min.js
vendored
BIN
searx/static/themes/simple/js/searxng.min.js
vendored
Binary file not shown.
Binary file not shown.
@ -101,7 +101,7 @@ window.searxng = (function (w, d) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
searxng.loadStyle = function (src) {
|
searxng.loadStyle = function (src) {
|
||||||
var path = searxng.settings.theme_static_path + src,
|
var path = searxng.settings.theme_static_path + "/" + src,
|
||||||
id = "style_" + src.replace('.', '_'),
|
id = "style_" + src.replace('.', '_'),
|
||||||
s = d.getElementById(id);
|
s = d.getElementById(id);
|
||||||
if (s === null) {
|
if (s === null) {
|
||||||
@ -115,7 +115,7 @@ window.searxng = (function (w, d) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
searxng.loadScript = function (src, callback) {
|
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('.', '_'),
|
id = "script_" + src.replace('.', '_'),
|
||||||
s = d.getElementById(id);
|
s = d.getElementById(id);
|
||||||
if (s === null) {
|
if (s === null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user