Skip to content

Commit

Permalink
Do not display manager interface as RTL
Browse files Browse the repository at this point in the history
There is a problem with chrome where if the manager is set to RTL
then the page does not display until you resize the window. As the
manager interface currently needs work in RTL layout (see ciudadanointeligente#1184) turning
of RTL display altogether is the best solution.

This is a temporary workaround for ciudadanointeligente#1185.
  • Loading branch information
struan authored and mhl committed Sep 28, 2017
1 parent 7c08fa0 commit 81103b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nuntium/templates/base_manager.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% load subdomainurls %}
{% get_current_language as LANGUAGE_CODE %}
{% get_current_language_bidi as LANGUAGE_BIDI %}
<html lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="RTL"{% endif %} class="no-js">
<html lang="{{ LANGUAGE_CODE }}" class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
Expand Down

0 comments on commit 81103b2

Please sign in to comment.