commit: b3974fc8808147c10cbf8177d109599ec88ef35a
parent: 52d108720254368c1ed9f83e7e1b48fec0f7f456
Author: Adam Tauber <asciimoo@gmail.com>
Date: Fri, 27 Jan 2017 01:19:49 +0100
[fix] do not show glyph icons if noscript is enabled - #838
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/searx/templates/oscar/base.html b/searx/templates/oscar/base.html
@@ -98,5 +98,10 @@
{% for script in scripts %}
<script src="{{ url_for('static', filename=script) }}"></script>
{% endfor %}
+ <noscript>
+ <style>
+ .glyphicon { display: none; }
+ </style>
+ </noscript>
</body>
</html>