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 #1184) turning
of RTL display altogether is the best solution.

This is a temporary workaround for #1185.
  • Loading branch information
struan authored and mhl committed Nov 30, 2016
1 parent f4ade26 commit eb0ace1
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 eb0ace1

Please sign in to comment.