Bunyamin Coskuner
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
framework/src/Volo.Abp.AspNetCore.Components.Web/wwwroot/libs/abp/js/lang-utils.js
|
|
|
@ -2,7 +2,7 @@ |
|
|
|
(function () { |
|
|
|
abp.utils = abp.utils || {}; |
|
|
|
|
|
|
|
abp.utils.setHTMLDirAndLang = function () { |
|
|
|
abp.utils.updateHTMLDirAndLangFromLocalStorage = function () { |
|
|
|
var isRtl = JSON.parse(localStorage.getItem("Abp.IsRtl")); |
|
|
|
var htmlTag = document.getElementsByTagName("html")[0]; |
|
|
|
|
|
|
|
@ -18,5 +18,5 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
abp.utils.setHTMLDirAndLang(); |
|
|
|
abp.utils.updateHTMLDirAndLangFromLocalStorage(); |
|
|
|
})(); |