Skip to content

Commit

Permalink
Fix: set html lang and dir attributes from config.json (fixes #499) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverfoster authored Feb 12, 2024
1 parent ce1a8a5 commit 2642a5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion required/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html id="adapt" class="no-js" lang="en" dir="ltr">
<html id="adapt" class="no-js" lang="@@config._defaultLanguage" dir="@@config._defaultDirection">
<head>
<script>
window.ADAPT_BUILD_TYPE = '@@build.type';
Expand Down
2 changes: 1 addition & 1 deletion required/index_lms.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html id="adapt" class="no-js" lang="en" dir="ltr">
<html id="adapt" class="no-js" lang="@@config._defaultLanguage" dir="@@config._defaultDirection">
<head>
<script>
window.ADAPT_BUILD_TYPE = '@@build.type';
Expand Down
2 changes: 1 addition & 1 deletion required/scorm_test_harness.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<html id="adapt" class="no-js" lang="en" dir="ltr">
<html id="adapt" class="no-js" lang="@@config._defaultLanguage" dir="@@config._defaultDirection">
<head>
<script>
window.ADAPT_BUILD_TYPE = '@@build.type';
Expand Down

0 comments on commit 2642a5a

Please sign in to comment.