Browse Source

Merge pull request #1194 from mrpaulblack/fix-leaflet-src

[fix] loading of external resources in JS client toolkit
Léon Tiekötter 3 years ago
parent
commit
035a4eaa09

File diff suppressed because it is too large
+ 0 - 0
searx/static/themes/simple/js/searxng.min.js


File diff suppressed because it is too large
+ 0 - 0
searx/static/themes/simple/js/searxng.min.js.map


+ 2 - 2
searx/static/themes/simple/src/js/main/00_toolkit.js

@@ -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) {

Some files were not shown because too many files changed in this diff