diff options
| author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-02-11 20:18:01 +0100 |
|---|---|---|
| committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-02-11 20:18:01 +0100 |
| commit | cec3ea77d54011fba3d9a9ab4ab3862ee62f0618 (patch) | |
| tree | ff4e710458a218a02305d717c89e4827e9f218d1 /searx/templates | |
| parent | a4ae775e0f170a483888f2f2deeaf841fe0f1a48 (diff) | |
Maps data must be LTR in RTL
Diffstat (limited to 'searx/templates')
| -rw-r--r-- | searx/templates/oscar/result_templates/map.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/oscar/result_templates/map.html b/searx/templates/oscar/result_templates/map.html index 2e679e84d..822c7cdea 100644 --- a/searx/templates/oscar/result_templates/map.html +++ b/searx/templates/oscar/result_templates/map.html @@ -40,7 +40,7 @@ {% endif %}
{% if result.osm and (result.osm.type and result.osm.id) %}
- <div class="row result-content collapse col-xs-12 col-sm-7 col-md-8" id="result-overpass-{{ index }}">
+ <div class="row result-content collapse col-xs-12 col-sm-7 col-md-8" id="result-overpass-{{ index }}"{% if rtl %} dir="ltr"{% endif %}>
<div class="text-center" id="result-overpass-table-loading-{{ index }}"><img src="{{ url_for('static', filename='img/loader.gif') }}" alt="Loading ..."/></div>
<table class="table table-striped table-condensed hidden" id="result-overpass-table-{{ index }}">
<tr><th>key</th><th>value</th></tr>
|