diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-11-03 22:18:40 +0100 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-11-03 22:18:40 +0100 |
| commit | 25312c53e170deb55bd48029e3b76b87692e1911 (patch) | |
| tree | efbffee25f85db3643d7cb2430821cb81b428122 /searx/templates/oscar/result_templates/images.html | |
| parent | b4829891f93515c7d19af2472a855eccd7807c4a (diff) | |
[enh] add no-js support
* image results have url, which can be clicked
* preferences full functionable without js
Diffstat (limited to 'searx/templates/oscar/result_templates/images.html')
| -rw-r--r-- | searx/templates/oscar/result_templates/images.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/oscar/result_templates/images.html b/searx/templates/oscar/result_templates/images.html index 5570a3143..3ad48352a 100644 --- a/searx/templates/oscar/result_templates/images.html +++ b/searx/templates/oscar/result_templates/images.html @@ -1,4 +1,4 @@ -<a href="#" data-toggle="modal" data-target="#modal-{{ index }}">
+<a href="{{ result.img_src }}" data-toggle="modal" data-target="#modal-{{ index }}">
<img src="{{ result.img_src }}" alt="{{ result.title|e }}" class="img-thumbnail">
</a>
|