diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2015-02-12 08:25:18 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2015-02-12 08:25:18 +0100 |
| commit | 516105c570a920dadeb87b34ee5ee434ad5cb16f (patch) | |
| tree | a4b231aa5905210a49d4b1f70f6be1b089ac4ef7 /searx/templates/oscar/result_templates/map.html | |
| parent | 9520542fa5c9f43c09d53b8673d4e25b6e561be8 (diff) | |
| parent | b5cbbcede4bb352531198d4e80a36d0082ccfa6e (diff) | |
Merge pull request #227 from Cqoicebordel/rtl-fix
RTL-fixes
Diffstat (limited to 'searx/templates/oscar/result_templates/map.html')
| -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>
|