Skip to content

Commit

Permalink
Fix open arabic interface
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaRadzhabova committed May 22, 2024
1 parent 9aa18f7 commit f43b1e6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/common/main/lib/util/htmlutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,11 @@ if ( window.nativeprocvars && window.nativeprocvars.rtl !== undefined ) {

if ( ui_rtl && !isIE ) {
document.body.setAttribute('dir', 'rtl');
document.body.classList.add('rtl', 'rtl-font');
document.body.classList.add('rtl');
}
if ( isLangRtl(lang) ) {
document.body.classList.add('rtl-font');
}


function checkScaling() {
var matches = {
Expand Down

0 comments on commit f43b1e6

Please sign in to comment.