소스 검색

Docs: Set navigation direction to rtl when language is ar.

Mr.doob 5 년 전
부모
커밋
81bdccaa4a
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      docs/index.html

+ 6 - 0
docs/index.html

@@ -204,6 +204,12 @@
 				navigation = document.createElement( 'div' );
 				content.appendChild( navigation );
 
+				if ( language === 'ar' ) {
+
+					navigation.style.direction = 'rtl';
+
+				}
+
 				var localList = list[ language ];
 
 				for ( var section in localList ) {