From a7260ac497c87ea959d467dbfcb0cd0a8169bfa7 Mon Sep 17 00:00:00 2001 From: Adam Tauber <asciimoo@gmail.com> Date: Sat, 16 Jul 2016 23:37:02 +0200 Subject: [PATCH] [fix] do not replace image href urls - closes #594 These lines were added to fix a js image load issue (#535) what i cannot reproduce. Hopefully we don't see it again --- searx/templates/oscar/base.html | 3 --- 1 file changed, 3 deletions(-) diff --git a/searx/templates/oscar/base.html b/searx/templates/oscar/base.html index 649d91f4d..a1f1c1a90 100644 --- a/searx/templates/oscar/base.html +++ b/searx/templates/oscar/base.html @@ -90,8 +90,5 @@ {% for script in scripts %} <script src="{{ url_for('static', filename=script) }}"></script> {% endfor %} - <script type="text/javascript"> - $(function() { $('a[data-toggle="modal"]').attr('href', '#'); }); - </script> </body> </html>