From 4fee8ff1df13613ca53d9ffa78cf11a933ec96f2 Mon Sep 17 00:00:00 2001 From: typer Date: Thu, 10 Sep 2020 20:40:39 -0700 Subject: [PATCH] fixed a bug with custom tests not getting leftToRight properly --- public/js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/script.js b/public/js/script.js index d8bb2a5e3..fc0c0f2a2 100644 --- a/public/js/script.js +++ b/public/js/script.js @@ -747,7 +747,7 @@ function addWord() { ? words[config.language] : { //borrow the direction of the current language - leftToRight: language.leftToRight, + leftToRight: words[config.language].leftToRight, words: customText }; const wordset = language.words;